fix(core): adjust recording user-select none style (#11735)

This commit is contained in:
pengx17
2025-04-16 09:19:14 +00:00
parent b21864cf63
commit ef7a82d6e6

View File

@@ -2,7 +2,6 @@ import { globalStyle, style } from '@vanilla-extract/css';
globalStyle('html', {
backgroundColor: 'transparent',
userSelect: 'none',
});
globalStyle('body', {
@@ -13,4 +12,5 @@ export const root = style({
backgroundColor: 'transparent',
width: '100%',
height: '100%',
userSelect: 'none',
});