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

@@ -101,7 +101,6 @@ export default {
if (this.appConfig) {
if (this.appConfig.externalStyleSheet) {
const externals = this.appConfig.externalStyleSheet;
console.log(externals);
if (Array.isArray(externals)) {
externals.forEach((ext, i) => {
availibleThemes[`External Stylesheet ${i + 1}`] = ext;
@@ -141,7 +140,6 @@ export default {
</script>
<style lang="scss" scoped>
@import '../../src/styles/color-pallet.scss';
@import '../../src/styles/media-queries.scss';
.home {
@@ -185,7 +183,7 @@ export default {
.no-data {
font-size: 2rem;
color: $background;
color: var(--background);
background: #ffffffeb;
width: fit-content;
margin: 2rem auto;