fix: removed rounded corners except for inputs
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user