Fix search input text color visibility

- Add search-input class to both desktop and mobile search inputs
- Set dark text color (#212529) for search input visibility
- Add placeholder styling with lighter color (#6c757d)
- Compile SCSS to CSS with new search input styles

Resolves: White text on white background issue in search fields
This commit is contained in:
2025-11-22 18:52:32 +01:00
parent 04a9406f14
commit 26f382c41d
4 changed files with 13 additions and 4 deletions

View File

@@ -271,6 +271,15 @@ footer {
max-width: 300px;
}
/* Search input text color */
.search-input {
color: #212529 !important;
}
.search-input::placeholder {
color: #6c757d !important;
}
/* Card styling */
.card-title a {
text-decoration: none;