22 lines
310 B
SCSS
22 lines
310 B
SCSS
|
@charset "utf-8";
|
||
|
|
||
|
// space-box
|
||
|
.overlay {
|
||
|
position: absolute;
|
||
|
}
|
||
|
|
||
|
#full-layout-canvas {
|
||
|
text-align: center;
|
||
|
position: relative;
|
||
|
|
||
|
.image-cover {
|
||
|
position: absolute;
|
||
|
left: 50%;
|
||
|
top: 50%;
|
||
|
height: 100%;
|
||
|
margin: auto;
|
||
|
|
||
|
// overflow: hidden;
|
||
|
transform: translate(-50%, -50%);
|
||
|
}
|
||
|
}
|