Proyectos de Subversion LeadersLinked - Backend

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
11347 nelberth 1
@use '../../../css/shared/variables.scss';
2
 
3
.addGroupTab {
4
  height: 100%;
5
  position: relative;
6
  form {
7
    height: 100%;
8
    width: 100%;
9
    display: flex;
10
    flex-direction: column;
11
    align-items: center;
12
    justify-content: center;
13
  }
14
}
15
.label {
16
  margin-bottom: 0.5rem;
17
  font-size: 1.2rem;
18
}
19
.input {
20
  width: 80%;
21
  padding: 0.5rem;
22
  font-size: 1.2rem;
23
  border-radius: 5px;
24
  border: none;
25
  box-shadow: variables.$light-shadow;
26
}
27
 
28
.buttonsContainer {
29
  margin-top: 1rem;
30
}
31
.button {
32
  padding: 0.5rem;
33
  font-size: 1rem;
34
  background-color: variables.$dark-blue;
35
  color: white;
36
  border-radius: 5px;
37
  & + & {
38
    margin-left: 1rem;
39
  }
40
}