Improve responsivness

This commit is contained in:
Alicia Sykes 2024-03-29 14:08:07 +00:00
parent 49c77d8d49
commit 7bacb217b3
2 changed files with 6 additions and 0 deletions

View File

@ -91,6 +91,9 @@ import ThemeSwitcher from "@components/form/ThemeSwitcher.svelte"
.theme-switcher { .theme-switcher {
transform: scale(0.7); transform: scale(0.7);
margin: 0.2rem auto; margin: 0.2rem auto;
@media(max-width: 768px) {
display: none;
}
} }
} }
.homepage, nav { .homepage, nav {

View File

@ -110,5 +110,8 @@
max-width: 165px; max-width: 165px;
font-size: 0.8rem; font-size: 0.8rem;
opacity: 0.6; opacity: 0.6;
@media(max-width: 768px) {
display: none;
}
} }
</style> </style>