Skip to content

Commit

Permalink
add focus-styling to select list
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnC-80 committed Oct 25, 2024
1 parent 6a42b2b commit 30c7438
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion lib/Selection/Selection.css
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,18 @@

.selectionList {
list-style: none;
padding: 4px;
padding: 2px 4px;
border-top: 2px solid transparent;
border-bottom: 2px solid transparent;
margin-bottom: 0;
overflow: auto;
position: relative;
outline: 0;

&:focus {
border-top-color: var(--primary);
border-bottom-color: var(--primary);
}
}

.selectListSection {
Expand Down

0 comments on commit 30c7438

Please sign in to comment.