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
|
trunk serve
|
||||||
```
|
```
|
||||||
|
|
||||||
|
To also access the local hosted page from other devices, use
|
||||||
|
```bash
|
||||||
|
trunk serve -a 0.0.0.0
|
||||||
|
```
|
||||||
|
|
||||||
## Deployment
|
## Deployment
|
||||||
|
|
||||||
Just use pythons webserver and point it to the dist folder
|
Just use pythons webserver and point it to the dist folder
|
||||||
|
|||||||
@ -4,3 +4,11 @@
|
|||||||
ul {
|
ul {
|
||||||
list-style-position: inside;
|
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