fix: correct CSS @import order to resolve 504 gateway timeout

This commit is contained in:
echo 2026-02-28 22:14:53 +01:00
parent 88dbd2719d
commit 79bd134977

View File

@ -1,5 +1,4 @@
@import "tailwindcss"; @import "tailwindcss";
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=IBM+Plex+Mono:wght@400;500;600;700&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=IBM+Plex+Mono:wght@400;500;600;700&display=swap');
@theme { @theme {
@ -76,10 +75,19 @@
--shadow-brutal-accent: 4px 4px 0px 0px hsl(193 48% 67%); --shadow-brutal-accent: 4px 4px 0px 0px hsl(193 48% 67%);
} }
@layer base {
* { * {
border-color: hsl(var(--border));
box-sizing: border-box; box-sizing: border-box;
} }
h1, h2, h3, h4, h5, h6 {
font-family: var(--font-display);
letter-spacing: 0.02em;
text-transform: uppercase;
}
}
html { html {
scroll-behavior: smooth; scroll-behavior: smooth;
} }
@ -325,18 +333,6 @@ body::before {
overflow: hidden; overflow: hidden;
} }
@layer base {
* {
border-color: hsl(var(--border));
}
h1, h2, h3, h4, h5, h6 {
font-family: var(--font-display);
letter-spacing: 0.02em;
text-transform: uppercase;
}
}
::-webkit-scrollbar { ::-webkit-scrollbar {
width: 12px; width: 12px;
} }