Hiding header nav bar on small screens. Improved scene and movie tile scaling, added thumbnail placeholder. Added pagination to movies page.

This commit is contained in:
2024-03-17 23:55:36 +01:00
parent da5e02be3d
commit c7f8391e43
5 changed files with 120 additions and 62 deletions

View File

@@ -218,6 +218,7 @@ async function logout() {
box-shadow: inset 0 0 3px var(--shadow-weak-40);
.input {
width: 14rem;
padding: .5rem 0 .5rem 1rem;
border: none;
margin: 0;
@@ -317,4 +318,16 @@ async function logout() {
fill: var(--error);
}
}
@media(--small) {
.search .input {
width: 10rem;
}
}
@media(--small-10) {
.nav-list {
display: none;
}
}
</style>