Better scaling

This commit is contained in:
Olivier Demers 2023-02-18 10:01:09 -05:00
parent a78edcacb9
commit 49e02ad5e0
2 changed files with 13 additions and 2 deletions

View File

@ -8,7 +8,7 @@
<nav>
<ul>
<li><a href="/"><img id="logo" src="/favicon.png" alt="PLS Logo" /></a></li>
<li><strong>PLS 5618</strong></li>
<li id="title"><strong>PLS 5618</strong></li>
</ul>
<ul>
<li><a href="/">L'équipe</a></li>
@ -46,8 +46,13 @@
height: 64px;
object-fit: contain;
}
nav {
padding-inline: 20px;
}
@media (max-width: 445px) {
#title {
display: none;
}
}
</style>

View File

@ -60,4 +60,10 @@
flex-flow: row;
justify-content: space-evenly;
}
@media (max-width: 640px) {
img {
display: none;
}
}
</style>