Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,9 @@
.col-form-label {
padding-top: 0;
padding-bottom: 0;
margin-bottom: 0.5rem;
margin-bottom: 0.25rem;
}

label {
margin-bottom: 0.25rem;
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
[formGroupName]="model.id"
[ngClass]="model.layout.element?.control">
@for (columnItems of items; track columnItems) {
<div class="col-sm ms-3">
<div class="col-sm">
@for (item of columnItems; track item) {
<div class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input"
Expand Down Expand Up @@ -43,7 +43,7 @@
[ngClass]="model.layout.element?.control"
(change)="onChange($event)">
@for (columnItems of items; track columnItems) {
<div class="col-sm ms-3">
<div class="col-sm">
@for (item of columnItems; track item) {
<div class="custom-control custom-radio">
<input type="radio" class="custom-control-input"
Expand Down
Loading