Remove sticky position from header with mobile screens

Too much vertical space used just for that, otherwise.
This commit is contained in:
oriol carbonell pujolàs 2024-02-02 02:27:23 +01:00
parent 4adad7fa7d
commit 18adbac5c3
1 changed files with 1 additions and 0 deletions

View File

@ -361,6 +361,7 @@ nav:last-of-type > ul > li:last-child {
@media (max-width: 80rem) {
body > header {
position: unset;
grid-template-columns: 1fr auto;
}