Slate style has certain behavior elements that iOS expects

This commit is contained in:
Gigiaj 2025-05-29 09:32:43 -05:00
parent e6f4eeca8e
commit 46d7a9c0bf

View file

@ -41,21 +41,21 @@ export const EditorTextarea = style([
}, },
]); ]);
export const EditorPlaceholder = style([ export const EditorPlaceholderContainer = style([
DefaultReset, DefaultReset,
{ {
position: 'absolute',
zIndex: 1,
width: '100%',
opacity: config.opacity.Placeholder, opacity: config.opacity.Placeholder,
pointerEvents: 'none', pointerEvents: 'none',
userSelect: 'none', userSelect: 'none',
},
]);
selectors: { export const EditorPlaceholderTextVisual = style([
'&:not(:first-child)': { DefaultReset,
display: 'none', {
}, display: 'block',
}, paddingTop: toRem(13),
paddingLeft: toRem(1),
}, },
]); ]);