Fix large gap on mobile for attributes

This commit is contained in:
DrMint 2024-06-02 23:24:18 +02:00
parent 4ed1e8910b
commit 85223ad63f
2 changed files with 0 additions and 8 deletions

View File

@ -79,9 +79,5 @@ const { getLocalizedMatch, getLocalizedUrl, formatNumber } = await getI18n(
display: flex;
flex-direction: column;
gap: 2em;
@media (max-width: 35rem) {
gap: 3em;
}
}
</style>

View File

@ -34,9 +34,5 @@ const { getLocalizedMatch, getLocalizedUrl } = await getI18n(Astro.locals.curren
div {
display: grid;
gap: 2em;
@media (max-width: 35rem) {
gap: 3em;
}
}
</style>