style: decrease highlighted font on mobile

This commit is contained in:
Ayo 2022-09-17 20:11:44 +02:00
parent 5d08c268a8
commit 4c05659bb2

View file

@ -115,4 +115,14 @@ import Footer from "../components/Footer.astro";
gap: 1rem;
padding: 0;
}
@media only screen
and (min-device-width: 360px)
and (max-device-width: 812px) {
.highlighted-content {
font-size: 16px;
font-weight: bold;
}
}
</style>