First working POC
This commit is contained in:
+26
@@ -0,0 +1,26 @@
|
||||
@import "tailwindcss";
|
||||
|
||||
/* Custom theme variables for JellyTau */
|
||||
@theme {
|
||||
--color-jellyfin: #00a4dc;
|
||||
--color-jellyfin-dark: #0085b3;
|
||||
--color-background: #101010;
|
||||
--color-surface: #1a1a1a;
|
||||
--color-surface-hover: #252525;
|
||||
}
|
||||
|
||||
/* Global styles */
|
||||
html, body {
|
||||
@apply h-full;
|
||||
background-color: var(--color-background);
|
||||
}
|
||||
|
||||
body {
|
||||
@apply text-white antialiased;
|
||||
font-family: system-ui, -apple-system, sans-serif;
|
||||
/* Handle safe areas for mobile devices (status bar, notches, etc.) */
|
||||
padding-top: env(safe-area-inset-top);
|
||||
padding-bottom: env(safe-area-inset-bottom);
|
||||
padding-left: env(safe-area-inset-left);
|
||||
padding-right: env(safe-area-inset-right);
|
||||
}
|
||||
Reference in New Issue
Block a user