Skip to content

Commit

Permalink
fix(progress): improve folder selection styles
Browse files Browse the repository at this point in the history
  • Loading branch information
Innders committed Nov 1, 2024
1 parent 1c1368a commit c12a90c
Showing 1 changed file with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,9 @@ export const Path = styled.span`
display: flex;
gap: var(--base-gap-small);
width: min-content;
padding: var(--padding-s);
border-radius: var(--border-radius-m);
border: 1px solid transparent;
/* first child ellipses */
& > :first-child {
Expand All @@ -87,12 +90,13 @@ export const Path = styled.span`
cursor: pointer;
&:hover {
text-decoration: underline;
background-color: var(--md-sys-color-surface-container-hover);
}
&.selected {
color: var(--md-sys-color-primary);
text-decoration: underline;
background-color: var(--md-sys-color-primary-container);
color: var(--md-sys-color-on-primary-container);
border-color: var(--md-sys-color-primary);
}
`

Expand Down

0 comments on commit c12a90c

Please sign in to comment.