From 8ce546ddbaaafe43a70f4c356abd9d0575e4e76f Mon Sep 17 00:00:00 2001 From: Henry Jonas Date: Mon, 25 Aug 2025 11:17:06 -0400 Subject: [PATCH] FOUR-24683: [45464] Richtext field not rendering ul tag (regression) --- resources/sass/tailwind.css | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/resources/sass/tailwind.css b/resources/sass/tailwind.css index bb1f49bd4b..9d9a8280d9 100644 --- a/resources/sass/tailwind.css +++ b/resources/sass/tailwind.css @@ -22,4 +22,12 @@ margin: 0; padding: 0; } - } \ No newline at end of file + } + + /* Reset the list style for the vue-form-renderer and screen-container */ + #screen-container ul, + #vue-form-renderer ul { + list-style: revert; + margin: revert; + padding: revert; + }