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

alexanderdavide
12.01.2022 eac53f66f73ced5c1320fc0862102ae88c925007
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
.wrapper {
  display: flex;
  flex-direction: column;
 
  @include desktop {
    flex-direction: row;
  }
 
  &__main {
    width: 100%;
 
    @include desktop_and_print {
      width: $content-width;
    }
  }
 
  &__sidebar {
    width: 100%;
 
    @include desktop_and_print {
      width: $sidebar-width;
    }
  }
}