style: responsiveness

This commit is contained in:
Ayo 2022-09-18 10:54:20 +02:00
parent e91012cfeb
commit 4a7f913d45

View file

@ -116,11 +116,20 @@ import Footer from "../components/Footer.astro";
padding: 0; padding: 0;
} }
@media only screen
and (min-device-width: 280px)
and (max-device-width: 653px) {
.top-content ul li {
font-size: 14px;
font-weight: bold;
}
}
@media only screen @media only screen
and (min-device-width: 360px) and (min-device-width: 360px)
and (max-device-width: 812px) { and (max-device-width: 812px) {
.top-content { .top-content ul li {
font-size: 16px; font-size: 20px;
font-weight: bold; font-weight: bold;
} }
} }