33 lines
394 B
SCSS
33 lines
394 B
SCSS
.thumb {
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: 1;
|
|
|
|
&:global(.closing) {
|
|
transition-delay: 150ms;
|
|
}
|
|
}
|
|
|
|
.thumb-opaque {
|
|
transition-delay: 0s;
|
|
}
|
|
|
|
.no-transition {
|
|
transition: none !important;
|
|
}
|
|
|
|
.media {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.thumb, .media {
|
|
// @optimization
|
|
&:not(:global(.shown)) {
|
|
display: block !important;
|
|
}
|
|
}
|