commit 42d13a9197e85744e9b8b8f6882e936826757fc0 parent ca1a7d7c9e3e284d7d713a62f2f04f3e209ff487 Author: ashermorgan <59518073+ashermorgan@users.noreply.github.com> Date: Mon, 30 Aug 2021 11:51:06 -0700 Adjust title size to fit small devices Diffstat:
| M | src/App.vue | | | 6 | ++++++ |
1 file changed, 6 insertions(+), 0 deletions(-)
diff --git a/src/App.vue b/src/App.vue @@ -50,4 +50,10 @@ h1 { #route-content { margin: 1em; } +@media only screen and (max-width: 320px) { + /* adjust title size to fit small devices */ + h1 { + font-size: 8vw; + } +} </style>