diff options
Diffstat (limited to 'src/alf/atoms.ts')
-rw-r--r-- | src/alf/atoms.ts | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/alf/atoms.ts b/src/alf/atoms.ts index e918e370d..429a06072 100644 --- a/src/alf/atoms.ts +++ b/src/alf/atoms.ts @@ -853,6 +853,7 @@ export const atoms = { mr_auto: { marginRight: 'auto', }, + /* * Pointer events & user select */ @@ -871,6 +872,7 @@ export const atoms = { user_select_all: { userSelect: 'all', }, + /* * Text decoration */ @@ -880,4 +882,11 @@ export const atoms = { strike_through: { textDecorationLine: 'line-through', }, + + /* + * Display + */ + hidden: { + display: 'none', + }, } as const |