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
38
39
40
.navbar-burger {
  cursor: pointer;
  display: block;
  height: 3.25rem;
  position: relative;
  width: 3.25rem;
  margin-left: auto;
 
  &__line {
    display: block;
    height: 1px;
    left: calc(50% - 8px);
    position: absolute;
    transform-origin: center;
    transition-duration: 86ms;
    transition-property: background-color, opacity, transform;
    transition-timing-function: ease-out;
    width: 16px;
 
    @include themed() {
      background-color: t('primary');
    }
 
    &:nth-child(1) {
      top: calc(50% - 6px);
    }
 
    &:nth-child(2) {
      top: calc(50% - 1px);
    }
 
    &:nth-child(3) {
      top: calc(50% + 4px);
    }
  }
 
  @include desktop {
    display: none;
  }
}