fix: not centered text on error pages

This commit is contained in:
Yanislav Igonin 2021-10-16 13:52:25 +03:00
parent 9d14673bb5
commit fd1d917e09
3 changed files with 3 additions and 3 deletions

View File

@ -12,7 +12,7 @@
<body>
<div class="h-100 d-flex justify-content-center align-items-center flex-column">
<h1>400</h1>
<h1>{{ .Message }}</h1>
<h1 class="text-center">{{ .Message }}</h1>
<a href="/" class="error-image-link">
<img
class="error-image"

View File

@ -12,7 +12,7 @@
<body>
<div class="h-100 d-flex justify-content-center align-items-center flex-column">
<h1>404</h1>
<h1>PAGE NOT FOUND</h1>
<h1 class="text-center">PAGE NOT FOUND</h1>
<a href="/" class="error-image-link">
<img
class="error-image"

View File

@ -12,7 +12,7 @@
<body>
<div class="h-100 d-flex justify-content-center align-items-center flex-column">
<h1>500</h1>
<h1>SOMETHING IS BROKEN</h1>
<h1 class="text-center">SOMETHING IS BROKEN</h1>
<a href="/" class="error-image-link">
<img
class="error-image"