@superdispatch/dates 0.24.9 → 0.25.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -518,6 +518,9 @@ var useStyles = /*#__PURE__*/styles.makeStyles(theme => ({
518
518
  '&:hover, &:focus': {
519
519
  outline: 'none'
520
520
  },
521
+ '&$today': {
522
+ border: "1px solid ".concat(ui.Color.Silver500)
523
+ },
521
524
  '&$disabled': {
522
525
  color: ui.Color.Dark100,
523
526
  '&$selected:not($outside):after': {
@@ -528,9 +531,6 @@ var useStyles = /*#__PURE__*/styles.makeStyles(theme => ({
528
531
  cursor: 'pointer',
529
532
  color: ui.Color.Dark500,
530
533
  '&:not($selected):not(:active)': {
531
- '&$today': {
532
- color: ui.Color.Blue300
533
- },
534
534
  '&:hover, &:focus': {
535
535
  backgroundColor: ui.Color.Silver100
536
536
  },
@@ -575,6 +575,13 @@ var useStyles = /*#__PURE__*/styles.makeStyles(theme => ({
575
575
  color: ui.Color.White,
576
576
  '&:after': {
577
577
  backgroundColor: ui.Color.Blue300
578
+ },
579
+ '&$today': {
580
+ border: 'none'
581
+ },
582
+ '&$today:before': {
583
+ border: "1px solid ".concat(ui.Color.Blue300),
584
+ borderRadius: theme.spacing(0.5)
578
585
  }
579
586
  }
580
587
  }