sitekey list

This commit is contained in:
realaravinth
2021-05-04 18:34:36 +05:30
parent 3ac95e1005
commit 98719670df
15 changed files with 230 additions and 49 deletions

View File

@@ -1,12 +1,9 @@
<. include!("../components/headers.html"); .>
<main>
<div class="inner-container">
<div class="error-box">
<h1 class="error-title"><.= title .></h1>
<p class="error-message"><.= message .></p>
</div>
<div class="inner-container">
<div class="error-box">
<h1 class="error-title"><.= title .></h1>
<p class="error-message"><.= message .></p>
</div>
<!-- end of container -->
</main>
</div>
<!-- end of container -->
<. include!("../components/footers.html"); .>

View File

@@ -17,27 +17,14 @@
@import '../reset';
@import '../vars';
@import '../components/box';
.error-box {
display: flex;
flex-direction: column;
width: 90%;
justify-content: center;
align-items: center;
box-sizing: content-box;
background-color: $white;
margin: auto;
padding-bottom: 30px;
@include box;
}
.error-title {
padding-left: 10px;
font-size: 1rem;
padding: 0.75rem 1.25rem;
box-sizing: border-box;
text-align: left;
width: 100%;
border-bottom: 0.1px solid $light-grey;
@include box-title;
}
.error-message {