furhter bug fixes and updates

This commit is contained in:
jenz
2026-08-22 17:10:27 +02:00
parent 9e8e8378a2
commit 16bb9e14a5
18 changed files with 1070 additions and 256 deletions
@@ -5,6 +5,8 @@
@layer base {
body {
@apply bg-base text-ink font-sans antialiased;
background-image: radial-gradient(ellipse 70% 45% at 50% -10%, rgba(63, 211, 122, 0.07), transparent 70%);
background-attachment: fixed;
}
::selection {
@@ -20,7 +22,11 @@
@layer components {
.panel {
@apply bg-base-panel border border-base-border rounded-lg;
@apply bg-base-panel border border-base-border rounded-xl;
background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0) 40%);
box-shadow:
0 1px 0 0 rgba(255, 255, 255, 0.04) inset,
0 12px 32px -16px rgba(0, 0, 0, 0.65);
}
.stat-label {
@@ -30,4 +36,13 @@
.mono {
@apply font-mono text-sm;
}
/* Subtle lift + accent-tinted background on interactive rows, used
across search results, tables, and lists so it's consistent everywhere. */
.row-interactive {
@apply transition-all duration-150;
}
.row-interactive:hover {
background-color: rgba(63, 211, 122, 0.05);
}
}