Skip to content

Commit

Permalink
Merge pull request #6 from danielzotti/main
Browse files Browse the repository at this point in the history
Improve mobile readability
  • Loading branch information
Cadienvan authored Mar 25, 2024
2 parents f6a2ced + 90413a1 commit 8b3cfae
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,6 @@ pnpm-debug.log*

# macOS-specific files
.DS_Store

# Webstorm
.idea
11 changes: 11 additions & 0 deletions src/layouts/RetroLayout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -253,4 +253,15 @@ import CookieBanner from "../components/CookieBanner.astro";
[data-ai-support-amount="low"] [data-tooltip]:after {
content: "Supporto limitato: revisione di alcune frasi e paragrafi.";
}

/* MOBILE ONLY */
@media (max-width: 600px) {
main {
max-width: 100%;
font-size: 14px;
}
h2 {
font-size: 1.2em;
}
}
</style>

0 comments on commit 8b3cfae

Please sign in to comment.