Skip to content

Commit

Permalink
updated css for style component (#650)
Browse files Browse the repository at this point in the history
  • Loading branch information
Horay authored Sep 11, 2023
1 parent 8dd58c5 commit b7f3165
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@nordcloud/gnui",
"description": "Nordcloud Design System - a collection of reusable React components used in Nordcloud's SaaS products",
"version": "8.17.0",
"version": "8.18.0",
"license": "MIT",
"repository": {
"type": "git",
Expand Down
7 changes: 4 additions & 3 deletions src/components/select/Select.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,15 +82,16 @@ const SelectContainer = styled.div`
}
&--is-focused {
cursor: pointer;
background: ${theme.color.interactive.secondaryHover};
background: ${theme.color.interactive.secondary};
color: ${theme.color.text.text01};
}
&--is-selected {
cursor: not-allowed;
background: ${theme.color.interactive.secondaryHover};
background: ${theme.color.interactive.secondaryActive};
color: ${theme.color.text.text01};
font-weight: 500;
&:active {
background: ${theme.color.interactive.secondaryHover};
background: ${theme.color.interactive.secondaryActive};
color: ${theme.color.text.text01};
}
}
Expand Down

0 comments on commit b7f3165

Please sign in to comment.