mirror of
https://github.com/primer/css.git
synced 2025-01-05 04:47:21 +03:00
feat(utilities): add .border-x
This commit is contained in:
parent
a397d74de1
commit
df09bf2eda
@ -5,6 +5,12 @@
|
|||||||
/* Add a gray border on all edges */
|
/* Add a gray border on all edges */
|
||||||
.border { border: $border !important; }
|
.border { border: $border !important; }
|
||||||
|
|
||||||
|
/* Add a gray border to the left and right */
|
||||||
|
.border-x {
|
||||||
|
border-left: $border !important;
|
||||||
|
border-right: $border !important;
|
||||||
|
}
|
||||||
|
|
||||||
/* Add a gray border to the top and bottom */
|
/* Add a gray border to the top and bottom */
|
||||||
.border-y {
|
.border-y {
|
||||||
border-top: $border !important;
|
border-top: $border !important;
|
||||||
|
Loading…
Reference in New Issue
Block a user