1
0
Fork 0
freesewing/packages/css-theme/src/_theme-wrapper.scss
2022-01-15 19:59:29 +01: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: $fs-bg-light;
color: $fs-bg-dark;
.altbg {
background: $fs-altbg-light;
}
}
.theme-wrapper.dark {
background: $fs-bg-dark;
color: $fs-bg-light;
.altbg {
background: $fs-altbg-dark;
}
}