From 5b4fe1c6d6257ff2306d6a44698b6f6fa0043906 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fe=CC=81lix=20Pe=CC=81ault?= Date: Tue, 21 Apr 2020 15:04:24 +0200 Subject: [PATCH] Credits: Fix Footer under the globe Added a z-index on the main (now with a class for specificity) to go over the canvas --- src/routes/credits.svelte | 2 +- src/style/layouts/_main.scss | 1 - src/style/pages/_page.scss | 10 +++++++++- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/src/routes/credits.svelte b/src/routes/credits.svelte index 6c77706..5d9a145 100644 --- a/src/routes/credits.svelte +++ b/src/routes/credits.svelte @@ -39,7 +39,7 @@ /> -
+
diff --git a/src/style/layouts/_main.scss b/src/style/layouts/_main.scss index aaeb009..6c0f161 100644 --- a/src/style/layouts/_main.scss +++ b/src/style/layouts/_main.scss @@ -1,7 +1,6 @@ // Main page .housesof { position: absolute; - z-index: 120; top: 0; left: 0; width: 100%; diff --git a/src/style/pages/_page.scss b/src/style/pages/_page.scss index 25d297b..34b419a 100644 --- a/src/style/pages/_page.scss +++ b/src/style/pages/_page.scss @@ -95,4 +95,12 @@ margin-top: 136px; } } -} + + + /* + ** Credit page + */ + &--credits { + z-index: 120; + } +} \ No newline at end of file