Sha256: c2168840700048cec9aae4cb6610739bd315ba818e96bbaf483f54e6365e2a19
Contents?: true
Size: 1.97 KB
Versions: 4
Compression:
Stored size: 1.97 KB
Contents
// Padding spacer utilities // stylelint-disable block-opening-brace-space-before // stylelint-disable comment-empty-line-before // stylelint-disable primer/spacing // Responsive padding spacer utilities @each $breakpoint, $variant in $responsive-variants { @include breakpoint($breakpoint) { // Loop through the spacer values @each $scale, $size in $spacer-map-rem-extended { @if ($scale < length($spacer-map-rem)) { /* Set a $size padding to all sides at $breakpoint */ .p#{$variant}-#{$scale} { padding: $size !important; } } /* Set a $size padding to the top at $breakpoint */ .pt#{$variant}-#{$scale} { padding-top: $size !important; } /* Set a $size padding to the right at $breakpoint */ .pr#{$variant}-#{$scale} { padding-right: $size !important; } /* Set a $size padding to the bottom at $breakpoint */ .pb#{$variant}-#{$scale} { padding-bottom: $size !important; } /* Set a $size padding to the left at $breakpoint */ .pl#{$variant}-#{$scale} { padding-left: $size !important; } @if ($scale < length($spacer-map-rem)) { /* Set a $size padding to the left & right at $breakpoint */ .px#{$variant}-#{$scale} { padding-right: $size !important; padding-left: $size !important; } } /* Set a $size padding to the top & bottom at $breakpoint */ .py#{$variant}-#{$scale} { padding-top: $size !important; padding-bottom: $size !important; } } } } // responsive padding for containers .p-responsive { padding-right: var(--base-size-16, $spacer-3) !important; padding-left: var(--base-size-16, $spacer-3) !important; @include breakpoint(sm) { padding-right: var(--base-size-40, $spacer-6) !important; padding-left: var(--base-size-40, $spacer-6) !important; } @include breakpoint(lg) { padding-right: var(--base-size-16, $spacer-3) !important; padding-left: var(--base-size-16, $spacer-3) !important; } }
Version data entries
4 entries across 4 versions & 1 rubygems