Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 23 additions & 19 deletions app.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@import "@/assets/graph.scss";
@use "@/assets/graph.scss" as *;

/** Gradients **/
.supercharge__gradient {
Expand All @@ -17,6 +17,16 @@

// slight shadow to make it pop out
filter: drop-shadow(2px 2px 0px rgb(5, 5, 5));

background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-weight: 700;
font-size: 1.5em;
font-family: "Inter", sans-serif;
text-transform: uppercase;
letter-spacing: 0.1rem;

// solid shadow though
// animation keyframes
@keyframes gradient {
Expand All @@ -31,14 +41,6 @@
}
}

background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-weight: 700;
font-size: 1.5em;
font-family: "Inter", sans-serif;
text-transform: uppercase;
letter-spacing: 0.1rem;
}

.smaller__gradient {
Expand All @@ -57,6 +59,18 @@

// slight shadow to make it pop out
filter: drop-shadow(2px 2px 0px rgb(0, 0, 0));


background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-weight: 700;
font-size: 1.25em;
font-family: "Inter", sans-serif;
text-transform: uppercase;
letter-spacing: 0.1rem;
/*margin-right: 0.5rem;*/

// solid shadow though
// animation keyframes
@keyframes gradient {
Expand All @@ -70,16 +84,6 @@
background-position: 0% 50%;
}
}

background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-weight: 700;
font-size: 1.25em;
font-family: "Inter", sans-serif;
text-transform: uppercase;
letter-spacing: 0.1rem;
/*margin-right: 0.5rem;*/
}

// Make gradient text smaller on mobile.
Expand Down
3 changes: 2 additions & 1 deletion nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ function getName(lang) {
}

export default defineNuxtConfig({
compatibilityDate: '2025-08-17',
devtools: { enabled: true },
modules: ['@nuxtjs/color-mode', '@nuxtjs/i18n', "@nuxt/image"],
nitro: {
Expand Down Expand Up @@ -66,7 +67,7 @@ export default defineNuxtConfig({
},
lazy: true,
strategy: 'no_prefix',
langDir: 'lang',
langDir: '../lang',
defaultLocale: 'en'
},
})
Loading