feat: enhance UI components with backdrop blur effects and improved background styles for better visual aesthetics

This commit is contained in:
Julien Froidefond
2025-10-17 11:09:07 +02:00
parent 8d6f8f4de7
commit faca1cdce6
44 changed files with 112 additions and 101 deletions

View File

@@ -88,7 +88,7 @@ body {
@apply border-border;
}
body {
@apply bg-background text-foreground;
@apply text-foreground;
}
}
@@ -105,4 +105,15 @@ body {
.pt-safe {
padding-top: env(safe-area-inset-top, 0);
}
/* Glassmorphism utilities */
.glass {
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
}
.glass-strong {
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
}
}