feat(search): update search input styles for improved focus visibility

This commit is contained in:
2026-07-03 10:57:59 -03:00
parent 45f0618ae9
commit be041f6e88
2 changed files with 3 additions and 3 deletions

View File

@@ -22,7 +22,6 @@
id="store-search-input" id="store-search-input"
type="search" type="search"
class="form-control store-layout__search-input border-end-0 rounded-start" class="form-control store-layout__search-input border-end-0 rounded-start"
placeholder="Buscar productos"
/> />
<button <button
type="button" type="button"

View File

@@ -56,8 +56,9 @@
} }
.store-layout__search-input:focus { .store-layout__search-input:focus {
border-color: var(--tenant-primary); border-color: #cccccc;
box-shadow: 0 0 0 0.25rem color-mix(in srgb, white 70%, var(--tenant-primary)); box-shadow: none;
outline: none;
} }
.store-layout__search-button { .store-layout__search-button {