Proyectos de Subversion LeadersLinked - SPA

Rev

Rev 410 | Rev 415 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 410 Rev 412
Línea 15... Línea 15...
15
  border: 1px solid var(--border-primary);
15
  border: 1px solid var(--border-primary);
16
  border-radius: var(--border-radius);
16
  border-radius: var(--border-radius);
17
  height: fit-content;
17
  height: fit-content;
18
  padding: 1rem 0;
18
  padding: 1rem 0;
19
  & > * {
19
  & > * {
20
    padding-right: 1rem;
20
    padding-right: 0.8rem;
21
    padding-left: 1rem;
21
    padding-left: 0.8rem;
22
  }
22
  }
23
  & > h2 {
23
  & > h2 {
24
    font-size: 16px;
24
    font-size: 16px;
25
    line-height: 1.2;
25
    line-height: 1.2;
26
  }
26
  }
27
  p {
27
  p {
28
    color: var(--font-color);
28
    color: var(--font-color);
29
    font-size: 1rem;
29
    font-size: 0.8rem;
30
    font-weight: 400;
30
    font-weight: 400;
31
    text-align: justify;
31
    text-align: justify;
32
    margin-bottom: 0.5rem;
32
    margin-bottom: 0.5rem;
33
  }
33
  }
34
  span {
34
  span {
35
    color: var(--subtitle-color);
35
    color: var(--subtitle-color);
36
    font-weight: 600;
36
    font-weight: 400;
37
    font-size: 0.9rem;
37
    font-size: 0.8rem;
38
  }
38
  }
39
`
39
`
Línea 40... Línea 40...
40
 
40
 
41
export const QuestionDetails = styled.div`
41
export const QuestionDetails = styled.div`
Línea 55... Línea 55...
55
  gap: 0.5rem;
55
  gap: 0.5rem;
56
  width: fit-content;
56
  width: fit-content;
57
  span {
57
  span {
58
    color: var(--subtitle-color);
58
    color: var(--subtitle-color);
59
    font-weight: 600;
59
    font-weight: 600;
60
    font-size: 1rem;
60
    font-size: 0.8rem;
61
  }
61
  }
62
`
62
`
Línea 63... Línea 63...
63
 
63
 
64
export const QuestionActions = styled.div`
64
export const QuestionActions = styled.div`
Línea 92... Línea 92...
92
  display: flex;
92
  display: flex;
93
  gap: 0.5rem;
93
  gap: 0.5rem;
94
  flex-wrap: wrap;
94
  flex-wrap: wrap;
95
  max-width: 200px;
95
  max-width: 200px;
96
  li {
96
  li {
97
    background: #c6d1f0;
97
    background: rgb(198, 209, 240);
98
    border-radius: var(--border-radius);
98
    border-radius: var(--border-radius);
99
    color: var(--font-color);
99
    color: var(--font-color);
100
    padding: 0.4rem 0.6rem;
100
    padding: 0.3rem 0.4rem;
101
    font-size: 0.9rem;
101
    font-size: 0.7rem;
102
    font-weight: 600;
102
    font-weight: 600;
103
  }
103
  }
104
`
104
`
Línea 105... Línea 105...
105
 
105