From d25d2af8ea50eb90808b80368ecd018e781fe7ea Mon Sep 17 00:00:00 2001 From: John Flockton Date: Fri, 3 Feb 2023 13:58:02 +0000 Subject: [PATCH] Add list-style-position:inside (#3814) --- .../lexical-playground/src/themes/PlaygroundEditorTheme.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/packages/lexical-playground/src/themes/PlaygroundEditorTheme.css b/packages/lexical-playground/src/themes/PlaygroundEditorTheme.css index 13846276dea..18d9fd0a37a 100644 --- a/packages/lexical-playground/src/themes/PlaygroundEditorTheme.css +++ b/packages/lexical-playground/src/themes/PlaygroundEditorTheme.css @@ -277,30 +277,36 @@ .PlaygroundEditorTheme__ol1 { padding: 0; margin: 0; + list-style-position: inside; } .PlaygroundEditorTheme__ol2 { padding: 0; margin: 0; list-style-type: upper-alpha; + list-style-position: inside; } .PlaygroundEditorTheme__ol3 { padding: 0; margin: 0; list-style-type: lower-alpha; + list-style-position: inside; } .PlaygroundEditorTheme__ol4 { padding: 0; margin: 0; list-style-type: upper-roman; + list-style-position: inside; } .PlaygroundEditorTheme__ol5 { padding: 0; margin: 0; list-style-type: lower-roman; + list-style-position: inside; } .PlaygroundEditorTheme__ul { padding: 0; margin: 0; + list-style-position: inside; } .PlaygroundEditorTheme__listItem { margin: 0 32px;