diff options
| author | Mark Otto <[email protected]> | 2021-07-28 09:43:43 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2021-07-28 09:43:43 -0700 |
| commit | 6d998a4b8deb4964cee80bb17f2e4869fd125f9d (patch) | |
| tree | c6d82c984abf87b0347e7f74e99133feb773f9d3 /scss/_utilities.scss | |
| parent | 4bfd8a2cbcb10610b4078cefa45756b4a96301a0 (diff) | |
| download | bootstrap-logical-props-spacing-utils.tar.xz bootstrap-logical-props-spacing-utils.zip | |
Use logical property values for mx, my, px, and py utilitieslogical-props-spacing-utils
Diffstat (limited to 'scss/_utilities.scss')
| -rw-r--r-- | scss/_utilities.scss | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/scss/_utilities.scss b/scss/_utilities.scss index 74f8a3a01..ae95e655f 100644 --- a/scss/_utilities.scss +++ b/scss/_utilities.scss @@ -316,13 +316,13 @@ $utilities: map-merge( ), "margin-x": ( responsive: true, - property: margin-right margin-left, + property: margin-inline, class: mx, values: map-merge($spacers, (auto: auto)) ), "margin-y": ( responsive: true, - property: margin-top margin-bottom, + property: margin-block, class: my, values: map-merge($spacers, (auto: auto)) ), @@ -359,13 +359,13 @@ $utilities: map-merge( ), "negative-margin-x": ( responsive: true, - property: margin-right margin-left, + property: margin-inline, class: mx, values: $negative-spacers ), "negative-margin-y": ( responsive: true, - property: margin-top margin-bottom, + property: margin-block, class: my, values: $negative-spacers ), @@ -402,13 +402,13 @@ $utilities: map-merge( ), "padding-x": ( responsive: true, - property: padding-right padding-left, + property: padding-inline, class: px, values: $spacers ), "padding-y": ( responsive: true, - property: padding-top padding-bottom, + property: padding-block, class: py, values: $spacers ), |
