From 5c3568a12a4e916837913783085e42b237e5bd03 Mon Sep 17 00:00:00 2001 From: isUnknown Date: Wed, 18 Feb 2026 12:08:12 +0100 Subject: [PATCH] Fix: golden-grid height 100vh au lieu de 100% Co-Authored-By: Claude Sonnet 4.5 --- src/style.css | 7 ++++--- src/styles/layout.css | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/src/style.css b/src/style.css index f5895ba..b1f001e 100644 --- a/src/style.css +++ b/src/style.css @@ -121,7 +121,7 @@ body { /* Golden Grid */ .golden-grid { - height: 100% !important; + height: 100vh !important; min-height: 100% !important; display: grid !important; position: relative; @@ -198,7 +198,7 @@ body { .earth-icon { width: 24px; height: 24px; - background-image: url('/assets/img/icon-earth-green.png'); + background-image: url("/assets/img/icon-earth-green.png"); background-size: contain; background-repeat: no-repeat; background-position: center; @@ -207,7 +207,8 @@ body { } .button:hover .earth-icon { - filter: brightness(0) saturate(100%) invert(77%) sepia(82%) saturate(507%) hue-rotate(91deg) brightness(101%) contrast(97%); + filter: brightness(0) saturate(100%) invert(77%) sepia(82%) saturate(507%) + hue-rotate(91deg) brightness(101%) contrast(97%); } /* Clickable elements */ diff --git a/src/styles/layout.css b/src/styles/layout.css index 8f6fb71..a0c3b74 100644 --- a/src/styles/layout.css +++ b/src/styles/layout.css @@ -1,6 +1,6 @@ /* Golden Grid */ .golden-grid { - height: 100% !important; + height: 100vh !important; min-height: 100% !important; display: grid !important; position: relative;