(scss) improve header height
This commit is contained in:
parent
192b91f4b9
commit
30317a1c41
2 changed files with 12 additions and 10 deletions
|
@ -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 {
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
// ------------------------
|
||||
|
|
Loading…
Reference in a new issue