From 3167616d80b89f100a3637209eaa036cfe041472 Mon Sep 17 00:00:00 2001 From: Bastien Dumont <bdumont@grandlyon.com> Date: Tue, 25 Jul 2023 16:05:56 +0200 Subject: [PATCH] fix padding --- scss/index.scss | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/scss/index.scss b/scss/index.scss index 3b6fb59..75306b8 100644 --- a/scss/index.scss +++ b/scss/index.scss @@ -1,5 +1,5 @@ -@import "./variables"; -@import "./globals"; +@import './variables'; +@import './globals'; .gaz-color { color: $gaz-color; @@ -246,13 +246,13 @@ nav { position: relative; &:before, &::after { - content: ""; + content: ''; display: inline-block; position: absolute; width: 100%; height: 10px; left: 0; - background-image: url("assets/pattern-dot.svg"); + background-image: url('assets/pattern-dot.svg'); background-color: $dark-yellow; background-repeat: repeat-x; background-position: center; @@ -355,7 +355,7 @@ nav { position: relative; &:before, &:after { - content: ""; + content: ''; display: inline-block; height: 100px; width: 1px; @@ -565,7 +565,7 @@ nav { #121212 67.5%, rgba(18, 18, 18, 0) 100% ), - url("assets/flyer-background.png"); + url('assets/flyer-background.png'); @media (max-width: $breakpoint) { height: 300px; background-image: linear-gradient( @@ -573,7 +573,7 @@ nav { #121212 47.44%, rgba(18, 18, 18, 0.6) 100% ), - url("assets/flyer-background-mobile.png"); + url('assets/flyer-background-mobile.png'); filter: blur(4px); } } @@ -682,6 +682,7 @@ footer { } .accessibility { + padding-top: 5rem; h2, h3, h4 { -- GitLab