Increase text size on mobile devices

This commit is contained in:
Leonard Steppy 2025-02-14 18:20:04 +01:00
parent fb94ac66ae
commit 97bff9ea8f
2 changed files with 13 additions and 0 deletions

View File

@ -18,6 +18,11 @@ Alternatively you can serve it locally with
trunk serve
```
To also access the local hosted page from other devices, use
```bash
trunk serve -a 0.0.0.0
```
## Deployment
Just use pythons webserver and point it to the dist folder

View File

@ -3,4 +3,12 @@
}
ul {
list-style-position: inside;
}
body {
font-size: 1rem;
}
@media (max-width: 1000px) {
body {
font-size: 1.5rem;
}
}