feat(header): improve header fit on smaller screens

This commit is contained in:
Elian Doran 2026-02-07 11:56:51 +02:00
parent 1007b8b15d
commit 6ca37ca7f4
No known key found for this signature in database

View File

@ -145,3 +145,30 @@ header {
}
}
}
@media ((min-width: 720px) and (max-width: 1115px)) {
header {
.banner span {
display: none;
}
.repository-button {
display: none;
}
nav {
font-size: 0.9em;
justify-content: center;
}
.download-button {
font-size: 0.8em;
padding: 0.5em;
.text {
display: flex;
flex-direction: column;
}
}
}
}