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

lxndrblz
20.46.2025 abeac350e8f49e780d9cad886856fcde2a91abc2
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
@use 'hugo:vars' as hugo;
@use 'modules/config' as conf;
@use 'modules/variables' as var;
 
.wrapper {
  display: flex;
  flex-direction: column;
 
  @include conf.desktop {
    flex-direction: row;
  }
 
  @include conf.widescreen {
    justify-content: center;
  }
 
  &__main {
    width: 100%;
 
    @include conf.desktop {
      width: hugo.$content-ratio;
    }
 
    @include conf.widescreen {
      width: hugo.$content-ratio-wide;
    }
 
    &--fullscreen {
      margin-top: 20px;
 
      @include conf.desktop {
        width: 100%;
        margin-top: 0px;
      }
 
      @include conf.widescreen {
        width: var.$body-max-width;
      }
    }
  }
 
  &__sidebar {
    width: 100%;
    padding: 16px 0;
 
    @include conf.desktop {
      width: hugo.$sidebar_ratio;
      padding: 0;
    }
 
    @include conf.widescreen {
      width: hugo.$sidebar_ratio_wide;
    }
 
    &--hidden {
      display: none;
    }
  }
}