Prettier format invocation

This commit is contained in:
2023-11-24 17:37:32 -06:00
parent 6d669660f5
commit 07336e48ed
2 changed files with 9 additions and 26 deletions

View File

@@ -8,8 +8,7 @@ header {
grid-template-columns: 1fr; grid-template-columns: 1fr;
&.glitch span { &.glitch span {
animation: animation: glitch 340ms cubic-bezier(0.46, 0.29, 0, 1.24) 1 backwards
glitch 340ms cubic-bezier(0.46, 0.29, 0, 1.24) 1 backwards
calc(var(--index) * 120ms), calc(var(--index) * 120ms),
jitter 2000ms ease infinite 2s alternate-reverse; jitter 2000ms ease infinite 2s alternate-reverse;
} }
@@ -44,9 +43,7 @@ header {
0% { 0% {
opacity: 0; opacity: 0;
transform: translateX(-50%); transform: translateX(-50%);
text-shadow: text-shadow: -2px 3px 0 red, 2px -3px 0 blue;
-2px 3px 0 red,
2px -3px 0 blue;
} }
60% { 60% {
opacity: 0.5; opacity: 0.5;
@@ -55,9 +52,7 @@ header {
80% { 80% {
transform: none; transform: none;
opacity: 1; opacity: 1;
text-shadow: text-shadow: 2px -3px 0 red, -2px 3px 0 blue;
2px -3px 0 red,
-2px 3px 0 blue;
} }
100% { 100% {
text-shadow: none; text-shadow: none;
@@ -66,15 +61,11 @@ header {
@keyframes jitter { @keyframes jitter {
0% { 0% {
text-shadow: text-shadow: -2px 3px 0 red, 2px -3px 0 blue;
-2px 3px 0 red,
2px -3px 0 blue;
transform: translate(var(--glitch-translate)); transform: translate(var(--glitch-translate));
} }
2% { 2% {
text-shadow: text-shadow: 2px -3px 0 red, -2px 3px 0 blue;
2px -3px 0 red,
-2px 3px 0 blue;
} }
4%, 4%,
100% { 100% {

View File

@@ -3,18 +3,10 @@
"compilerOptions": { "compilerOptions": {
"baseUrl": ".", "baseUrl": ".",
"paths": { "paths": {
"@styles/*": [ "@styles/*": ["src/styles/*"],
"src/styles/*" "@layouts/*": ["src/layouts/*"],
], "@posts/*": ["src/pages/posts/*"],
"@layouts/*": [ "@components/*": ["src/components/*"]
"src/layouts/*"
],
"@posts/*": [
"src/pages/posts/*"
],
"@components/*": [
"src/components/*"
]
} }
} }
} }