Skip to content

Commit

Permalink
Fix tablist box shadow border issue
Browse files Browse the repository at this point in the history
  • Loading branch information
hojberg committed Aug 23, 2023
1 parent 37b0161 commit 9db29e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/css/ui/components/tab-list.css
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@

.tab-list .tab.tab_selected {
color: var(--c-color_tabs_text_selected);
box-shadow: inset 0 -1px 0 1px var(--c-color_tabs_border_selected);
box-shadow: inset 0 -2px 0 -1px var(--c-color_tabs_border_selected);
}

.tab-list .tab:not(.tab_selected):hover {
color: var(--c-color_tabs_text_hovered);
box-shadow: inset 0 -1px 0 1px var(--c-color_tabs_border_hovered);
box-shadow: inset 0 -2px 0 -1px var(--c-color_tabs_border_hovered);
}

0 comments on commit 9db29e5

Please sign in to comment.