diff --git a/index.html b/index.html
index 32ab2f9..3dc3b80 100644
--- a/index.html
+++ b/index.html
@@ -6,7 +6,6 @@
-
diff --git a/src/App.vue b/src/App.vue
index c0f91b4..c343484 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -1,4 +1,4 @@
-
@@ -6,9 +6,33 @@ import HeaderComponent from './components/Header/HeaderComponent.vue'
-
+
+
+
+
+
-
diff --git a/src/styles/app.scss b/src/styles/app.scss
index 1991164..1e438fd 100644
--- a/src/styles/app.scss
+++ b/src/styles/app.scss
@@ -8,7 +8,7 @@
@font-face {
font-family: 'Monaspace Krypton', monospace;
src: url('../assets/fonts/MonaspaceKrypton.ttf') format('truetype');
- font-display: block;
+ font-display: swap;
}
* {
diff --git a/src/styles/classes.scss b/src/styles/classes.scss
index 8c56427..6876eae 100644
--- a/src/styles/classes.scss
+++ b/src/styles/classes.scss
@@ -1,5 +1,18 @@
@import './variables.scss';
+.view__container {
+ min-height: 70dvh !important;
+ width: 100vw !important;
+}
+
+.h-100 {
+ height: 100% !important;
+}
+
+.w-100 {
+ width: 100% !important;
+}
+
.header__mobile__item {
height: $header-item-height !important;
width: $header-item-width !important;
diff --git a/src/views/NotFoundView/NotFound.vue b/src/views/NotFoundView/NotFound.vue
index 4f2b12a..622f6d8 100644
--- a/src/views/NotFoundView/NotFound.vue
+++ b/src/views/NotFoundView/NotFound.vue
@@ -7,7 +7,7 @@ import { RouterLink } from 'vue-router'
.not__found__wrapper {
@include flex(column, center, center);
- min-height: 60dvh;
- width: 100%;
- padding: 3rem 2rem;
+ padding: 3rem 3rem;
> .not__found__image {
max-width: 350px;
@@ -92,17 +90,17 @@ main {
border-radius: $radius-lg;
padding: 0.8rem 1rem;
- transition: background-color 0.3s ease;
+ transition: all 0.3s ease;
margin-top: 1rem;
@media screen and (max-width: 600px) {
font-size: $text-sm;
- padding: 0.6rem 0.4rem;
}
&:hover {
background-color: $darker-cyan;
+ box-shadow: 0 0.1rem 1.0rem 0.1rem rgba(39, 222, 192, 0.2);
}
}
}