Credits: Fix Footer under the globe

Added a z-index on the main (now with a class for specificity) to go over the canvas
This commit is contained in:
2020-04-21 15:04:24 +02:00
parent cd51724d8b
commit 5b4fe1c6d6
3 changed files with 10 additions and 3 deletions

View File

@@ -39,7 +39,7 @@
/> />
</svelte:head> </svelte:head>
<main class="housesof" class:is-transitioning={!$pageReady}> <main class="housesof page--credits" class:is-transitioning={!$pageReady}>
<section class="page"> <section class="page">
<div class="wrap"> <div class="wrap">
<div class="page__top"> <div class="page__top">

View File

@@ -1,7 +1,6 @@
// Main page // Main page
.housesof { .housesof {
position: absolute; position: absolute;
z-index: 120;
top: 0; top: 0;
left: 0; left: 0;
width: 100%; width: 100%;

View File

@@ -95,4 +95,12 @@
margin-top: 136px; margin-top: 136px;
} }
} }
/*
** Credit page
*/
&--credits {
z-index: 120;
}
} }