mirror of https://github.com/lxndrblz/anatole.git

alexanderdavide
20.47.2022 708d5c1fbc80428f01cb5c8a627fc157ec4ca561
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
.footer {
  clear: both;
  text-align: center;
  font-size: 1rem;
  margin: 0 auto;
  bottom: 0;
  width: 100%;
  padding-bottom: 20px;
  flex: 0;
  position: relative;
 
  &__list {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
  }
 
  &__item:not(:first-of-type)::before {
    content: '\00B7';
    padding: 4px;
  }
 
  &__sidebar {
    display: none;
 
    @include desktop_and_print {
      display: inline-block;
    }
  }
 
  &__base {
    @include desktop_and_print {
      display: none;
    }
  }
}