Light mode fixes (#1379)

* Fix color of text in text buttons in light mode

* fix border color of search input in light mode

* fix carousel text colors in light mode

* fix scroll shadows colors in light mode
This commit is contained in:
Damien Erambert
2025-12-12 19:30:30 -08:00
committed by GitHub
parent 578083d994
commit 22dd20884d
6 changed files with 81 additions and 7 deletions
@@ -38,6 +38,21 @@
overflow-x: hidden;
}
.search-text-input {
background: transparent;
border-color: rgb(255 255 255 / 5%);
border-style: solid;
border-width: 1px;
@mixin light {
border-color: rgb(0 0 0 / 5%);
}
@mixin dark {
border-color: rgb(255 255 255 / 5%);
}
}
@container (min-width: $mantine-breakpoint-lg) {
.content-layout {
grid-template-areas: 'songs metadata';