Skip to content

Commit bc8479b

Browse files
authored
Merge pull request #8607 from ProcessMaker/bugfix/FOUR-27941
FOUR-27941: Overlapping Numbers in My Cases
2 parents 678b4a3 + c927222 commit bc8479b

File tree

1 file changed

+19
-4
lines changed

1 file changed

+19
-4
lines changed

resources/sass/tailwind.css

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,29 @@
1616

1717
/* Ordered and unordered lists are unstyled by default,
1818
with no bullets/numbers and no margin or padding. */
19-
.form-group ol,
20-
.form-group ul {
21-
list-style: revert-layer;
19+
ol,
20+
ul {
21+
list-style: none;
2222
margin: 0;
23-
padding: revert-layer;
23+
padding: 0;
2424
}
2525
}
2626

27+
.form-group ol.b-form-tags-list,
28+
.form-group ul.b-form-tags-list {
29+
list-style: none;
30+
margin: 0;
31+
padding: 0;
32+
}
33+
34+
/* Reset the list style for the form-group */
35+
.form-group ol,
36+
.form-group ul {
37+
list-style: revert-layer;
38+
margin: 0;
39+
padding: revert-layer;
40+
}
41+
2742
/* Reset the list style for the vue-form-renderer and screen-container */
2843
.multiselect__content-wrapper ul,
2944
.multiselect__content-wrapper ol {

0 commit comments

Comments
 (0)