braid-design-system
Version:
Themeable design system for the SEEK Group
20 lines (16 loc) • 357 B
text/typescript
import { style } from '@vanilla-extract/css';
export const closeButton = style({});
export const closeButtonFocus = style({
selectors: {
[`${closeButton}:focus &`]: {
opacity: 1,
},
},
});
export const closeButtonHover = style({
selectors: {
[`${closeButton}:focus &, ${closeButton}:hover &`]: {
opacity: 1,
},
},
});