Skip to content

Commit

Permalink
fix: Add cursor: not allowed when button disabled attr was activated.
Browse files Browse the repository at this point in the history
  • Loading branch information
Brokyeom committed Dec 2, 2024
1 parent 45d8311 commit a462050
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions packages/ui/Button/style.css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,17 @@ import theme from '../theme.css';
import { bgColors, borderRadiuses, borders, fontSizes, paddings, textColors } from './constants';

export const root = style({
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
gap: '4px',
border: 'none',
cursor: 'pointer',
fontWeight: 600,
minWidth: 'max-content',
'display': 'flex',
'justifyContent': 'center',
'alignItems': 'center',
'gap': '4px',
'border': 'none',
'cursor': 'pointer',
'fontWeight': 600,
'minWidth': 'max-content',
':disabled': {
cursor: 'not-allowed',
},
});

const sprinkleProperties = defineProperties({
Expand Down

0 comments on commit a462050

Please sign in to comment.