fix: correct text for input field in search bar

This commit is contained in:
Tim Rijkse
2026-01-15 08:08:09 +01:00
parent 3aff4d1630
commit b65800b069
2 changed files with 12 additions and 2 deletions

View File

@@ -184,7 +184,7 @@ class SearchBar extends HTMLElement {
padding: 0 16px;
font-family: var(--font-family-base);
font-size: var(--font-size-base, 16px);
font-weight: var(--font-weight-normal, 400);
font-weight: var(--font-weight-light, 300);
color: #383838;
background-color: transparent;
border: none;
@@ -194,7 +194,7 @@ class SearchBar extends HTMLElement {
.search-input::placeholder {
font-family: var(--font-family-base);
font-size: var(--font-size-base, 16px);
font-weight: var(--font-weight-normal, 400);
font-weight: var(--font-weight-light, 300);
color: rgba(56, 56, 56, 0.5);
}