Skip to content

Commit

Permalink
add border to AnglePicker active state
Browse files Browse the repository at this point in the history
  • Loading branch information
chad1008 committed Nov 15, 2022
1 parent 1b38797 commit ecccc61
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ export const CircleRoot = styled.div`
box-sizing: border-box;
cursor: grab;
height: ${ CIRCLE_SIZE }px;
overflow: hidden;
width: ${ CIRCLE_SIZE }px;
`;

Expand All @@ -42,10 +41,15 @@ export const CircleIndicatorWrapper = styled.div`
position: relative;
width: 100%;
height: 100%;
border-radius: 50%;
:focus-visible {
outline: none;
}
:active {
outline: ${ COLORS.ui.themeDark10 } auto 1px;
}
`;

export const CircleIndicator = styled.div`
Expand Down

0 comments on commit ecccc61

Please sign in to comment.