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

Alexander Bilz
12.09.2022 fe27dbac37cf3301ac78c0ce6422eda748649447
1
2
3
4
5
6
7
8
9
10
11
12
13
.body {
  width: 100%;
  margin: 0 auto;
  // work around to style body
  &.theme--dark {
    color: $primary--darkmode;
    background-color: $accent--darkmode;
  }
  &.theme--light {
    color: $primary--lightmode;
    background-color: $accent--lightmode;
  }
}