Proyectos de Subversion LeadersLinked - SPA

Rev

Rev 1437 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1437 stevensc 1
import { styled } from '@mui/material'
1255 stevensc 2
 
1637 stevensc 3
const Form = styled('form')`
1277 stevensc 4
  position: relative;
1255 stevensc 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;
1266 stevensc 25
    margin-top: 0.5rem;
1255 stevensc 26
    width: 100%;
27
  }
28
`
29
 
30
export default Form