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