Skip to content

Commit

Permalink
Add all margin and padding unsets
Browse files Browse the repository at this point in the history
  • Loading branch information
dolanske committed Jan 23, 2025
1 parent 07adeab commit 68b45b7
Showing 1 changed file with 37 additions and 1 deletion.
38 changes: 37 additions & 1 deletion src/style/layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -183,14 +183,50 @@ $sizes: 'xxs', 'xs', 's', 'm', 'l', 'xl', 'xxl', 'xxxl';
}
}

// Unsets, add as needed
// Unsets
.p-0 {
padding: 0 !important;
}
.pr-0 {
padding-right: 0 !important;
}
.pl-0 {
padding-left: 0 !important;
}
.pt-0 {
padding-top: 0 !important;
}
.pb-0 {
padding-bottom: 0 !important;
}
.px-0 {
padding-inline: 0 !important;
}
.py-0 {
padding-block: 0 !important;
}

.m-0 {
margin: 0 !important;
}
.mr-0 {
margin-right: 0 !important;
}
.ml-0 {
margin-left: 0 !important;
}
.mt-0 {
margin-top: 0 !important;
}
.mb-0 {
margin-bottom: 0 !important;
}
.mx-0 {
margin-inline: 0 !important;
}
.my-0 {
margin-block: 0 !important;
}

// Z-index
$zindexes: 0, 10, 20, 30, 40, 50, auto;
Expand Down

0 comments on commit 68b45b7

Please sign in to comment.