1
1
mirror of https://github.com/primer/css.git synced 2024-12-01 04:21:12 +03:00

[breaking] remove responsive borders from marketing-utilities

This commit is contained in:
Shawn Allen 2018-08-23 15:22:36 -07:00
parent 314eeb41bb
commit eea1415e31

View File

@ -1,20 +1,6 @@
// Border utilities
// stylelint-disable block-opening-brace-space-before, primer/selector-no-utility, comment-empty-line-before
// Responsive border utilities
@each $breakpoint in map-keys($breakpoints) {
@include breakpoint($breakpoint) {
.border-#{$breakpoint}-top { border-top: $border !important; }
.border-#{$breakpoint}-right { border-right: $border !important; }
.border-#{$breakpoint}-bottom { border-bottom: $border !important; }
.border-#{$breakpoint}-left { border-left: $border !important; }
.border-#{$breakpoint}-top-0 { border-top: 0 !important; }
.border-#{$breakpoint}-right-0 { border-right: 0 !important; }
.border-#{$breakpoint}-bottom-0 { border-bottom: 0 !important; }
.border-#{$breakpoint}-left-0 { border-left: 0 !important; }
}
}
/* Use with .border to turn the border rgba white 0.15 */
.border-white-fade { border-color: $white-fade-15 !important; }
.border-white-fade {
border-color: $white-fade-15 !important;
}