fix: Layout overflow on narrow screen
This commit is contained in:
parent
72af3e9d65
commit
e714877e47
|
@ -103,6 +103,7 @@
|
||||||
@media (max-width: 700px) {
|
@media (max-width: 700px) {
|
||||||
#layout {
|
#layout {
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
margin-top: 10px;
|
||||||
gap: 20px;
|
gap: 20px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -35,8 +35,11 @@
|
||||||
}
|
}
|
||||||
@media (max-width: 700px) {
|
@media (max-width: 700px) {
|
||||||
#navbar {
|
#navbar {
|
||||||
flex-direction: row;
|
display: inline-block;
|
||||||
justify-content: start;
|
white-space: pre-wrap;
|
||||||
|
}
|
||||||
|
#navbar .nav-link {
|
||||||
|
display: inline-block;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue