Proyectos de Subversion LeadersLinked - SPA

Rev

Rev 1637 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

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