Skip to content

Commit

Permalink
fix(edit-content): Margin and Padding of Columns and Fields #26564
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinDavilaDotCMS authored and dsolistorres committed Nov 6, 2023
1 parent 0814bd5 commit 52154c5
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
:host {
display: block;
height: fit-content;
margin-bottom: 0;
}
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,14 @@
display: grid;
grid-auto-flow: column;
grid-auto-columns: minmax(0, 1fr);
gap: $spacing-2;
gap: $spacing-4;
margin-bottom: $spacing-4;
}

.column {
display: flex;
flex-direction: column;
gap: $spacing-3;
gap: $spacing-4;
}

code {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
p-checkbox:last-child {
margin-bottom: 0;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
p-radiobutton:last-child {
margin-bottom: 0;
}

0 comments on commit 52154c5

Please sign in to comment.