feat: implement page not found component with styled layout
testing/ogGui-multibranch/pipeline/head There was a failure building this commit
Details
testing/ogGui-multibranch/pipeline/head There was a failure building this commit
Details
parent
7137768939
commit
3cd46e1166
|
@ -0,0 +1,16 @@
|
|||
.main-container {
|
||||
height: 100dvh;
|
||||
display: grid;
|
||||
place-content: center;
|
||||
}
|
||||
|
||||
.content-container {
|
||||
padding: 4em;
|
||||
border: 1px solid #3f51b5;
|
||||
border-radius: 30px;
|
||||
}
|
||||
|
||||
.message {
|
||||
font-size: 25px;
|
||||
font-weight: 500;
|
||||
}
|
|
@ -1 +1,7 @@
|
|||
<p>page-not-found works!</p>
|
||||
<main>
|
||||
<article class="main-container">
|
||||
<div class="content-container">
|
||||
<span class="message">Page not found</span>
|
||||
</div>
|
||||
</article>
|
||||
</main>
|
Loading…
Reference in New Issue