fix: removed rounded corners except for inputs

This commit is contained in:
2026-05-15 01:15:46 +02:00
parent 598e842b2c
commit 604a9ab382
2 changed files with 13 additions and 4 deletions

View File

@@ -57,7 +57,7 @@
--space-8: 2rem;
--poster-max-height: 360px;
--font: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
--radius: 6px;
--radius: 0px;
}
[data-theme='light'] {
@@ -74,6 +74,15 @@ body {
color: var(--text);
}
/* Default to square corners; opt back in selectively (e.g. inputs). */
:where(input, textarea, select) {
border-radius: 6px !important;
}
:where(.rounded-keep) {
border-radius: 6px !important;
}
.scrollbar-hide::-webkit-scrollbar {
display: none;
}
@@ -91,12 +100,12 @@ body {
.scrollbar-hide::-webkit-scrollbar-track {
background: rgba(255, 255, 255, 0.05);
border-radius: 4px;
border-radius: 0;
}
.scrollbar-hide::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.2);
border-radius: 4px;
border-radius: 0;
}
.scrollbar-hide::-webkit-scrollbar-thumb:hover {