mirror of
https://github.com/primer/css.git
synced 2025-01-03 03:34:16 +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 */
|
||||
.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 */
|
||||
.border-y {
|
||||
border-top: $border !important;
|
||||
|
Loading…
Reference in New Issue
Block a user