1
0
Fork 0
freesewing/packages/css-theme/src/_theme-wrapper.scss

26 lines
391 B
SCSS
Raw Normal View History

.theme-wrapper {
2019-05-05 17:06:22 +02:00
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;
}
}