(scss) improve header height

This commit is contained in:
Vri 🌈 2023-01-06 22:44:54 +01:00
parent 192b91f4b9
commit 30317a1c41
Signed by: vrifox
GPG key ID: D40098E5B60B2197
2 changed files with 12 additions and 10 deletions

View file

@ -1,15 +1,5 @@
#introduction {
align-items: center;
background: var(--vriish-gradient);
display: flex;
flex-direction: column;
padding: 3em 0;
gap: .5em;
justify-content: center;
z-index: 2;
h1, p {
margin: 0;
}
}
section {

View file

@ -36,6 +36,7 @@ html {
"sidebar content"
"sidebar footer";
grid-template-columns: 250px 1fr;
grid-template-rows: min-content;
line-height: 1.7;
margin: 0;
min-height: 100vh;
@ -84,7 +85,18 @@ html {
}
.global-header {
align-items: center;
grid-area: header;
position: relative;
display: flex;
flex-direction: column;
gap: .5em;
justify-content: center;
padding: 3em 0;
z-index: 2;
h1, p {
margin: 0;
}
}
// ------------------------