Removed SCSS variables, and replaced with CSS --vars

This commit is contained in:
Alicia Sykes
2021-04-08 20:12:35 +01:00
parent 0cb6cc7d62
commit 0c12cdb0f6
22 changed files with 96 additions and 87 deletions

View File

@@ -1,5 +1,5 @@
<template>
<div id="dashy">
<div id="dashy" data-theme="dark">
<Header :pageInfo="getPageInfo(pageInfo)" />
<router-view />
<Footer />
@@ -38,10 +38,10 @@ export default {
<style lang="scss">
@import '../src/styles/global-styles.scss';
@import '../src/styles/color-pallet.scss';
@import '../src/styles/color-palette.scss';
body {
background: $background;
background: var(--background);
margin: 0;
padding: 0;
}