Skip to content

Commit

Permalink
fix(components): select style (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielsimao authored Sep 13, 2023
1 parent 647b85d commit b13eacd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/fresh-zoos-mix.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@just_testing13/components": patch
---

fix(components): select style
2 changes: 2 additions & 0 deletions packages/components/src/Select/Select.style.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@ const StyledTriggerValue = styled(Span)<StyledTriggerValueProps>`
color: ${({ $isDisabled, $isSelected }) =>
$isDisabled ? theme.input.disabled.color : $isSelected ? theme.select.color : theme.select.placeholder};
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
`;

const StyledList = styled(List)`
Expand Down

0 comments on commit b13eacd

Please sign in to comment.