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;
| }
| }
|
|