Skip to content

Commit 0ca9f31

Browse files
authored
Merge pull request #8595 from ProcessMaker/bugfix/FOUR-27641
FOUR-27641: CSS: The data from the select list is being displayed with a space on the left side.
2 parents 6db93d2 + 2f7e132 commit 0ca9f31

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

resources/sass/tailwind.css

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,18 @@
1616

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

2727
/* Reset the list style for the vue-form-renderer and screen-container */
28-
#screen-container ul,
29-
#vue-form-renderer ul {
30-
list-style: revert;
31-
margin: revert;
32-
padding: revert;
28+
.multiselect__content-wrapper ul,
29+
.multiselect__content-wrapper ol {
30+
list-style: revert-layer;
31+
margin: revert-layer;
32+
padding: 0px;
3333
}

0 commit comments

Comments
 (0)