Skip to content

Commit 3d50ab1

Browse files
fix: small mistake in CSS selector (#5776)
Co-authored-by: philibeaux <aphilibeaux@scaleway.com>
1 parent db7d449 commit 3d50ab1

File tree

1 file changed

+3
-3
lines changed
  • packages/ui/src/components/SelectableCardOptionGroup

1 file changed

+3
-3
lines changed

packages/ui/src/components/SelectableCardOptionGroup/styles.css.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,22 +39,22 @@ globalStyle(`${optionSelectInput} ${selectBarBase}`, {
3939
})
4040

4141
globalStyle(
42-
`${optionSelectInput} ${selectBarBase}:hover, ${optionSelectInput} ${selectBarBase}:focus, ${optionSelectInput} ${selectBarBase}:active, `,
42+
`${optionSelectInput} ${selectBarBase}:hover, ${optionSelectInput} ${selectBarBase}:focus, ${optionSelectInput} ${selectBarBase}:active`,
4343
{
4444
borderColor: theme.colors.neutral.border,
4545
outline: 'none',
4646
},
4747
)
4848

4949
globalStyle(
50-
`${optionSelectInputDisabled} ${selectBarBase}:hover, ${optionSelectInputDisabled} ${selectBarBase}:focus, ${optionSelectInputDisabled} ${selectBarBase}:active, `,
50+
`${optionSelectInputDisabled} ${selectBarBase}:hover, ${optionSelectInputDisabled} ${selectBarBase}:focus, ${optionSelectInputDisabled} ${selectBarBase}:active`,
5151
{
5252
borderColor: theme.colors.neutral.borderDisabled,
5353
},
5454
)
5555

5656
globalStyle(
57-
`${optionSelectInputError} ${selectBarBase}:hover, ${optionSelectInputError} ${selectBarBase}:focus, ${optionSelectInputError} ${selectBarBase}:active, `,
57+
`${optionSelectInputError} ${selectBarBase}:hover, ${optionSelectInputError} ${selectBarBase}:focus, ${optionSelectInputError} ${selectBarBase}:active`,
5858
{
5959
borderColor: theme.colors.danger.border,
6060
},

0 commit comments

Comments
 (0)