Removed all old SASS color variables.

This commit is contained in:
2020-07-05 04:27:46 +02:00
parent f4ef2d4cc2
commit e4144409f0
12 changed files with 90 additions and 126 deletions

View File

@@ -1,20 +1,20 @@
<template>
<div class="errorpage">
<h1 class="error">404 - Not Found</h1>
<div class="errorpage">
<h1 class="error">404 - Not Found</h1>
<a
href="/"
class="home"
>Take me home</a>
</div>
<a
href="/"
class="home"
>Take me home</a>
</div>
</template>
<style lang="scss" scoped>
@import 'theme';
.errorpage {
background: $background;
color: $primary;
background: var(--background);
color: var(--primary);
height: 100%;
display: flex;
flex-direction: column;
@@ -28,7 +28,7 @@
}
.home {
color: $shadow;
color: var(--shadow);
margin: 3rem 0;
}
</style>