1
1
mirror of https://github.com/primer/css.git synced 2024-12-03 03:33:40 +03:00

Add negative margins

This commit is contained in:
Tobias Ahlin 2021-03-18 16:25:43 +01:00
parent d0c569c53e
commit a4f79a9ebd

View File

@ -8,6 +8,9 @@
.mt#{$variant}-#{$scale} { margin-top: $size !important; }
.mb#{$variant}-#{$scale} { margin-bottom: $size !important; }
.mt#{$variant}-n#{$scale} { margin-top: -$size !important; }
.mb#{$variant}-n#{$scale} { margin-bottom: -$size !important; }
.my#{$variant}-#{$scale} {
margin-top: $size !important;
margin-bottom: $size !important;