mirror of
https://github.com/yanislav-igonin/micrach
synced 2024-12-22 14:22:33 +03:00
fix: fast fix for 400/404 errors pages
This commit is contained in:
parent
a98d4f1ceb
commit
993ca5e614
@ -1,11 +1,11 @@
|
||||
.error-image-link {
|
||||
max-height: 200px;
|
||||
max-width: 200px;
|
||||
transition: 0.2s;
|
||||
}
|
||||
.error-image-link:hover {
|
||||
max-height: 300px;
|
||||
max-width: 300px;
|
||||
}
|
||||
|
||||
.error-image {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
}
|
@ -11,7 +11,7 @@
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="h-100 d-flex justify-content-center align-items-center flex-column">
|
||||
<div class="vh-100 d-flex justify-content-center align-items-center flex-column">
|
||||
<h1>400</h1>
|
||||
<h1 class="text-center">{{ .Message }}</h1>
|
||||
<a href="/" class="error-image-link">
|
||||
|
@ -11,7 +11,7 @@
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="h-100 d-flex justify-content-center align-items-center flex-column">
|
||||
<div class="vh-100 d-flex justify-content-center align-items-center flex-column">
|
||||
<h1>404</h1>
|
||||
<h1 class="text-center">PAGE NOT FOUND</h1>
|
||||
<a href="/" class="error-image-link">
|
||||
|
@ -11,7 +11,7 @@
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="h-100 d-flex justify-content-center align-items-center flex-column">
|
||||
<div class="vh-100 d-flex justify-content-center align-items-center flex-column">
|
||||
<h1>500</h1>
|
||||
<h1 class="text-center">SOMETHING IS BROKEN</h1>
|
||||
<a href="/" class="error-image-link">
|
||||
|
Loading…
Reference in New Issue
Block a user