From c927222743476fb90bdee086af93965183cca994 Mon Sep 17 00:00:00 2001 From: Henry Jonas Date: Tue, 18 Nov 2025 12:25:17 -0400 Subject: [PATCH] FOUR-27941: Overlapping Numbers in My Cases --- resources/sass/tailwind.css | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) diff --git a/resources/sass/tailwind.css b/resources/sass/tailwind.css index 3e411c6e2c..d5315c4990 100644 --- a/resources/sass/tailwind.css +++ b/resources/sass/tailwind.css @@ -16,14 +16,29 @@ /* Ordered and unordered lists are unstyled by default, with no bullets/numbers and no margin or padding. */ - .form-group ol, - .form-group ul { - list-style: revert-layer; + ol, + ul { + list-style: none; margin: 0; - padding: revert-layer; + padding: 0; } } + .form-group ol.b-form-tags-list, + .form-group ul.b-form-tags-list { + list-style: none; + margin: 0; + padding: 0; + } + + /* Reset the list style for the form-group */ + .form-group ol, + .form-group ul { + list-style: revert-layer; + margin: 0; + padding: revert-layer; + } + /* Reset the list style for the vue-form-renderer and screen-container */ .multiselect__content-wrapper ul, .multiselect__content-wrapper ol {