Added a z-index on the main (now with a class for specificity) to go over the canvas
14 lines
213 B
SCSS
14 lines
213 B
SCSS
// Main page
|
|
.housesof {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
transition: opacity 0.3s $ease-quart;
|
|
will-change: opacity;
|
|
|
|
&.is-transitioning {
|
|
opacity: 0;
|
|
}
|
|
}
|