Skip to content
Snippets Groups Projects
Commit 3167616d authored by Bastien DUMONT's avatar Bastien DUMONT :angel:
Browse files

fix padding

parent b04e1eac
No related branches found
No related tags found
No related merge requests found
@import "./variables"; @import './variables';
@import "./globals"; @import './globals';
.gaz-color { .gaz-color {
color: $gaz-color; color: $gaz-color;
...@@ -246,13 +246,13 @@ nav { ...@@ -246,13 +246,13 @@ nav {
position: relative; position: relative;
&:before, &:before,
&::after { &::after {
content: ""; content: '';
display: inline-block; display: inline-block;
position: absolute; position: absolute;
width: 100%; width: 100%;
height: 10px; height: 10px;
left: 0; left: 0;
background-image: url("assets/pattern-dot.svg"); background-image: url('assets/pattern-dot.svg');
background-color: $dark-yellow; background-color: $dark-yellow;
background-repeat: repeat-x; background-repeat: repeat-x;
background-position: center; background-position: center;
...@@ -355,7 +355,7 @@ nav { ...@@ -355,7 +355,7 @@ nav {
position: relative; position: relative;
&:before, &:before,
&:after { &:after {
content: ""; content: '';
display: inline-block; display: inline-block;
height: 100px; height: 100px;
width: 1px; width: 1px;
...@@ -565,7 +565,7 @@ nav { ...@@ -565,7 +565,7 @@ nav {
#121212 67.5%, #121212 67.5%,
rgba(18, 18, 18, 0) 100% rgba(18, 18, 18, 0) 100%
), ),
url("assets/flyer-background.png"); url('assets/flyer-background.png');
@media (max-width: $breakpoint) { @media (max-width: $breakpoint) {
height: 300px; height: 300px;
background-image: linear-gradient( background-image: linear-gradient(
...@@ -573,7 +573,7 @@ nav { ...@@ -573,7 +573,7 @@ nav {
#121212 47.44%, #121212 47.44%,
rgba(18, 18, 18, 0.6) 100% rgba(18, 18, 18, 0.6) 100%
), ),
url("assets/flyer-background-mobile.png"); url('assets/flyer-background-mobile.png');
filter: blur(4px); filter: blur(4px);
} }
} }
...@@ -682,6 +682,7 @@ footer { ...@@ -682,6 +682,7 @@ footer {
} }
.accessibility { .accessibility {
padding-top: 5rem;
h2, h2,
h3, h3,
h4 { h4 {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment