Proyectos de Subversion LeadersLinked - SPA

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
325 stevensc 1
@import "../../styles/variables.scss";
2
 
3
.footer {
4
  padding: 1rem 0;
5
  position: relative;
6
  > img {
7
    position: absolute;
8
    left: 0;
9
    top: 50%;
10
    transform: translateY(-50%);
11
  }
12
}
13
 
14
.footer_content {
15
  display: flex;
16
  width: -moz-available;
17
  width: -webkit-fill-available;
18
  width: fill-available;
19
  align-items: center;
20
  gap: 1rem;
21
 
22
  ul {
23
    display: grid;
24
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
25
    gap: 10px;
26
 
27
    li {
28
      display: inline-flex;
29
 
30
      a {
31
        font-size: 14px;
32
        font-weight: 500;
33
        color: $font-color;
34
      }
35
    }
36
  }
37
}
38
 
39
.footer__main {
40
  display: inline-flex;
41
  img {
42
    margin-right: 5px;
43
  }
44
  p {
45
    color: $subtitle-color;
46
    font-size: 14px;
47
    font-weight: 500;
48
  }
49
}