running-tools

A collection of tools for runners and their coaches
git clone https://git.ashermorgan.net/running-tools/
Log | Files | Refs | README

commit 92e8f47c0df25202ff5b103a547935bbfd00f4b7
parent f3cf19ae77d63eb7f9de6a562af72f29177e5cca
Author: Asher Morgan <59518073+ashermorgan@users.noreply.github.com>
Date:   Mon, 20 May 2024 20:29:30 -0700

Update 404 page

Diffstat:
M404.html | 9+++++++--
Msrc/views/NotFoundPage.vue | 11+++++++----
2 files changed, 14 insertions(+), 6 deletions(-)

diff --git a/404.html b/404.html @@ -26,9 +26,14 @@ font-size: 2em; font-weight: bold; } + main { + margin: 1em; + } h1 { font-size: 1.5em; - margin: 10px 10px 0px; + } + p { + margin-top: 0.5em; } </style> </head> @@ -37,7 +42,7 @@ <header>Running Tools</header> <main> <h1>404 Not Found</h1> - <p><a href="%BASE_URL%">homepage</a></p> + <p><a href="%BASE_URL%">Return home</a></p> </main> </body> </html> diff --git a/src/views/NotFoundPage.vue b/src/views/NotFoundPage.vue @@ -1,15 +1,18 @@ <template> <div class="not-found-page"> <h1>404 Not Found</h1> - <p><router-link to="/home">homepage</router-link></p> + <p><router-link to="/home">Return home</router-link></p> </div> </template> <style scoped> -h1 { - font-size: 1.5em; -} .not-found-page { text-align: center; } +.not-found-page h1 { + font-size: 1.5em; +} +.not-found-page p { + margin-top: 0.5em; +} </style>