Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 19 additions & 4 deletions resources/sass/tailwind.css
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
Loading