Increase text size on mobile devices
This commit is contained in:
parent
fb94ac66ae
commit
97bff9ea8f
@ -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
|
||||
|
||||
@ -3,4 +3,12 @@
|
||||
}
|
||||
ul {
|
||||
list-style-position: inside;
|
||||
}
|
||||
body {
|
||||
font-size: 1rem;
|
||||
}
|
||||
@media (max-width: 1000px) {
|
||||
body {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user