This commit is contained in:
2021-03-21 22:17:18 +01:00
parent 738056477a
commit 2060c843ae
22 changed files with 1579 additions and 136 deletions

View File

@@ -1,7 +0,0 @@
# ASSETS
**This directory is not required, you can delete it if you don't want to use it.**
This directory contains your un-compiled assets such as LESS, SASS, or JavaScript.
More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/assets#webpacked).

20
src/assets/css/style.scss Normal file
View File

@@ -0,0 +1,20 @@
.icon {
transform: translate(3px, -3px);
z-index: 1;
}
img, svg {
position: static;
}
body {
@apply dark:bg-dark-900
}
* {
@apply select-none outline-none;
}
.nuxt-content-editor {
@apply dark:bg-dark-800 border dark:border-white border-black border-solid;
}

View File

@@ -0,0 +1,6 @@
@import url('https://fonts.googleapis.com/css2?family=Raleway&display=swap');
@import "./style.scss";
@tailwind base;
@tailwind components;
@tailwind utilities;