PreRelease v1

This commit is contained in:
2026-03-25 13:52:45 +01:00
parent 94b0c68703
commit 6bf998a52a
56 changed files with 11427 additions and 847 deletions

View File

@@ -91,6 +91,38 @@
"rlig" 1,
"calt" 1;
}
* {
@apply border-border;
}
body {
@apply bg-background text-foreground;
font-feature-settings:
"rlig" 1,
"calt" 1;
}
/* Smooth scrolling */
html {
scroll-behavior: smooth;
}
/* Better font rendering */
body {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-rendering: optimizeLegibility;
}
/* Selection styles */
::selection {
@apply bg-primary/20;
}
/* Focus styles */
:focus-visible {
@apply outline-none ring-2 ring-primary ring-offset-2;
}
}
@layer utilities {