blob: c2fb9fba4e158f2d1f9b7e7a97665a4dce299650 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
@use '../../NewLightboxStyles.scss' as newstyles;
.template-container {
width: 100vw;
height: 100vh;
&.dark {
background: newstyles.$black;
}
&.light,
&.default {
background: newstyles.$white;
}
}
|