@basic-ui/material 1.0.0-alpha.6 → 1.0.0-alpha.7

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.
@@ -65,15 +65,13 @@ export function useRippleSurface<T extends HTMLElement>(
65
65
 
66
66
  const css: SxStyleProp = useMemo(
67
67
  () => ({
68
- '&': {
69
- overflow: 'hidden',
70
- position: 'relative',
71
- cursor: 'pointer',
72
- // fix overflow: hidden + borderRadius in Safari
73
- // https://gist.github.com/ayamflow/b602ab436ac9f05660d9c15190f4fd7b#gistcomment-2359479
74
- willChange: 'transform,opacity',
75
- WebkitTapHighlightColor: 'transparent',
76
- },
68
+ overflow: 'hidden',
69
+ position: 'relative',
70
+ cursor: 'pointer',
71
+ // fix overflow: hidden + borderRadius in Safari
72
+ // https://gist.github.com/ayamflow/b602ab436ac9f05660d9c15190f4fd7b#gistcomment-2359479
73
+ willChange: 'transform,opacity',
74
+ WebkitTapHighlightColor: 'transparent',
77
75
  // ripple overlay
78
76
  '&::before': {
79
77
  backgroundColor: rippleColor,