Added status card
This commit is contained in:
14
src/assets/animations/_fade.scss
Normal file
14
src/assets/animations/_fade.scss
Normal file
@@ -0,0 +1,14 @@
|
||||
.fade {
|
||||
&-enter-from,
|
||||
&-leave-to {
|
||||
opacity: 0;
|
||||
}
|
||||
&-enter-to,
|
||||
&-leave-from {
|
||||
opacity: 1;
|
||||
}
|
||||
&-enter-active,
|
||||
&-leave-active {
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
}
|
||||
8
src/assets/base/body.scss
Normal file
8
src/assets/base/body.scss
Normal file
@@ -0,0 +1,8 @@
|
||||
body {
|
||||
@apply relative min-h-screen min-w-full text-y-beige-700 bg-y-beige-400 tracking-[-0.03em];
|
||||
word-spacing: 0.5em;
|
||||
|
||||
&::before {
|
||||
@apply absolute content-[''] h-full w-full bg-[url('/backgrounds/tile-bg.svg')] bg-[length:4px_4px] z-50 opacity-5 pointer-events-none select-none
|
||||
}
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@200;300;400;500;700&display=swap');
|
||||
|
||||
@tailwind base;
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
||||
|
||||
body {
|
||||
@apply relative min-h-screen min-w-full text-y-beige-700 bg-y-beige-400;
|
||||
letter-spacing: -0.03em;
|
||||
word-spacing: 0.5em;
|
||||
}
|
||||
|
||||
body::before {
|
||||
@apply absolute content-[''] h-full w-full bg-[url('/backgrounds/tile-bg.svg')] bg-[length:4px_4px] z-50 opacity-5 pointer-events-none select-none
|
||||
}
|
||||
|
||||
.fade-enter-from {
|
||||
opacity: 0;
|
||||
}
|
||||
.fade-enter-to {
|
||||
opacity: 1;
|
||||
}
|
||||
.fade-enter-active {
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
.fade-leave-from {
|
||||
opacity: 1;
|
||||
}
|
||||
.fade-leave-to {
|
||||
opacity: 0;
|
||||
}
|
||||
.fade-leave-active {
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
18
src/assets/main.scss
Normal file
18
src/assets/main.scss
Normal file
@@ -0,0 +1,18 @@
|
||||
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@200;300;400;500;700&display=swap');
|
||||
|
||||
@tailwind base;
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
||||
|
||||
@layer base {
|
||||
@import 'base/body';
|
||||
}
|
||||
|
||||
@layer utilities {
|
||||
@import 'utilities/scrollbar';
|
||||
}
|
||||
|
||||
/**
|
||||
* ANIMATIONS FOR TRANSITIONS
|
||||
*/
|
||||
@import 'animations/fade'
|
||||
5
src/assets/utilities/_scrollbar.scss
Normal file
5
src/assets/utilities/_scrollbar.scss
Normal file
@@ -0,0 +1,5 @@
|
||||
.y-scrollbar {
|
||||
&::-webkit-scrollbar-button {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user