Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 597 Rev 611
Línea 13... Línea 13...
13
  overflow: hidden;
13
  overflow: hidden;
14
  position: relative;
14
  position: relative;
15
  span {
15
  span {
16
    font-size: 0.9rem;
16
    font-size: 0.9rem;
17
  }
17
  }
-
 
18
  p {
-
 
19
    color: var(--font-color);
-
 
20
    font-size: 14px;
-
 
21
    text-align: justify;
-
 
22
    margin: 0.5rem 0;
-
 
23
  }
-
 
24
  h2 {
-
 
25
    font-size: 1rem;
-
 
26
  }
18
  @media ${device.tablet} {
27
  @media ${device.tablet} {
19
    border-radius: var(--border-radius);
28
    border-radius: var(--border-radius);
20
  }
29
  }
21
`
30
`
Línea 31... Línea 40...
31
 
40
 
32
const LayoutBody = styled.div`
41
const LayoutBody = styled.div`
33
  padding: 5px 1rem;
42
  padding: 5px 1rem;
34
  display: flex;
43
  display: flex;
35
  flex-direction: column;
-
 
36
  p {
-
 
37
    color: var(--font-color);
-
 
38
    font-size: 14px;
-
 
39
    text-align: justify;
-
 
40
    margin: 0.5rem 0;
-
 
41
  }
-
 
42
  span {
-
 
43
    font-size: 0.9rem;
-
 
44
  }
44
  flex-direction: column;
Línea 45... Línea 45...
45
`
45
`
46
 
46
 
47
const HeaderInfo = styled.div`
47
const HeaderInfo = styled.div`
48
  align-items: center;
48
  align-items: center;
49
  display: inline-flex;
49
  display: inline-flex;
50
  gap: 0.5rem;
-
 
51
  width: fit-content;
-
 
52
  h2 {
-
 
53
    font-size: 1rem;
50
  gap: 0.5rem;
Línea 54... Línea 51...
54
  }
51
  width: fit-content;
55
`
52
`
56
 
53