feat: build production-ready wtr weather PWA

This commit is contained in:
zv
2026-06-01 18:43:56 +02:00
commit 840555f4f5
60 changed files with 9052 additions and 0 deletions

53
app/globals.css Normal file
View File

@@ -0,0 +1,53 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
color-scheme: light;
}
.dark {
color-scheme: dark;
}
* {
border-color: rgba(148, 163, 184, 0.2);
}
html {
min-width: 320px;
scroll-behavior: smooth;
}
body {
min-height: 100vh;
background: #eef5fb;
color: #102238;
-webkit-font-smoothing: antialiased;
}
.dark body {
background: #07111f;
color: #edf7ff;
}
button,
a,
input,
select {
outline-offset: 3px;
}
@layer utilities {
.glass {
@apply border border-white/35 bg-white/45 shadow-glass backdrop-blur-2xl dark:border-white/10 dark:bg-slate-950/30;
}
.glass-subtle {
@apply border border-white/25 bg-white/25 backdrop-blur-xl dark:border-white/10 dark:bg-slate-950/20;
}
.text-balance {
text-wrap: balance;
}
}