Proyectos de Subversion LeadersLinked - SPA

Rev

Rev 1637 | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
3719 stevensc 1
import { styled } from '@mui/material';
2
 
3
const Form = styled('form')`
4
  position: relative;
5
  h3 {
6
    font-size: 18px;
7
    padding-bottom: 0.5rem;
8
    margin-bottom: 1rem;
9
    position: relative;
10
    width: fit-content;
11
    &:before {
12
      content: '""';
13
      position: absolute;
14
      background-color: #0961bf;
15
      bottom: 0;
16
      left: 0;
17
      width: 100%;
18
      height: 2px;
19
    }
20
  }
21
 
22
  button {
23
    padding-top: 0.5rem;
24
    padding-bottom: 0.5rem;
25
    margin-top: 0.5rem;
26
    width: 100%;
27
  }
28
`;
29
 
30
export default Form;