Skip to content

Commit

Permalink
Issue #988: fix css filters
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzov96 committed May 21, 2024
1 parent 123c6ff commit 15a65f6
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -418,15 +418,15 @@ function ViewAllTabs({
onSelectedTabIndexChange(index);
}}
css={css`
appearance: none !important;
width: 17px !important;
height: 16px !important;
border-radius: 50% !important;
border: 2px solid #ccc !important;
appearance: none;
width: 17px;
height: 16px;
border-radius: 50%;
border: 2px solid #ccc;
background-color: ${selectedTabIndex === index
? "var(--openk9-embeddable-search--secondary-active-color) !important"
: "#fff !important"};
cursor: pointer !important;
? "var(--openk9-embeddable-search--secondary-active-color) "
: "#fff "};
cursor: pointer;
`}
/>
<label
Expand Down

0 comments on commit 15a65f6

Please sign in to comment.