Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions app/components/header.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,12 @@ input.search {
background-size: 14px 15px;
border-radius: 15px;
box-shadow: none;
transition: box-shadow 150ms;

&:focus {
outline: none;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

does this not mess with accessibility?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

only if there is no visual alternative, which the shadow provides in this case

box-shadow: 0 0 0 4px var(--yellow);
}
}

.mobile-search {
Expand Down