1
0
Fork 0
freesewing/packages/css-theme/src/_theme-wrapper.scss
2019-05-15 16:06:38 +02:00

25 lines
391 B
SCSS

.theme-wrapper {
margin: 0;
padding: 0;
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.theme-wrapper.light {
background: $fc-bg-light;
color: $fc-bg-dark;
.altbg {
background: $fc-altbg-light;
}
}
.theme-wrapper.dark {
background: $fc-bg-dark;
color: $fc-bg-light;
.altbg {
background: $fc-altbg-dark;
}
}