Make main menu stick to top
This commit is contained in:
parent
66c692af84
commit
0bd29fdf4f
|
@ -31,15 +31,18 @@ body {
|
||||||
}
|
}
|
||||||
|
|
||||||
header, footer {
|
header, footer {
|
||||||
padding: 0 1rem;
|
padding: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
header {
|
header {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
background: $color-background;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
margin-top: 1rem;
|
position: sticky;
|
||||||
|
top: 0;
|
||||||
|
z-index: 1;
|
||||||
|
|
||||||
a img {
|
a img {
|
||||||
display: block;
|
display: block;
|
||||||
|
@ -89,7 +92,7 @@ header {
|
||||||
}
|
}
|
||||||
|
|
||||||
main {
|
main {
|
||||||
padding: 1rem;
|
padding: 0 1rem;
|
||||||
|
|
||||||
& > :last-child {
|
& > :last-child {
|
||||||
margin-bottom: 0 !important;
|
margin-bottom: 0 !important;
|
||||||
|
@ -100,16 +103,12 @@ main {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
footer {
|
footer nav {
|
||||||
margin-bottom: 1rem;
|
align-items: end;
|
||||||
|
|
||||||
nav {
|
@media screen and (min-width: $small) {
|
||||||
align-items: end;
|
align-items: normal;
|
||||||
|
justify-content: end;
|
||||||
@media screen and (min-width: $small) {
|
|
||||||
align-items: normal;
|
|
||||||
justify-content: end;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue