mirror of
https://github.com/primer/css.git
synced 2024-12-28 08:31:58 +03:00
24 lines
931 B
SCSS
24 lines
931 B
SCSS
// Border utilities
|
|
.border { border: $border !important; }
|
|
.border-top { border-top: $border !important; }
|
|
.border-right { border-right: $border !important; }
|
|
.border-bottom { border-bottom: $border !important; }
|
|
.border-left { border-left: $border !important; }
|
|
|
|
// Border colors
|
|
.border-blue { border-color: $border-blue !important; }
|
|
.border-gray-light { border-color: $border-gray-light !important; }
|
|
.border-gray-dark { border-color: $border-gray-dark !important; }
|
|
|
|
// Without borders
|
|
.border-0 { border: 0 !important; }
|
|
.border-top-0 { border-top: 0 !important; }
|
|
.border-right-0 { border-right: 0 !important; }
|
|
.border-bottom-0 { border-bottom: 0 !important; }
|
|
.border-left-0 { border-left: 0 !important; }
|
|
|
|
// Rounded corners
|
|
.rounded-0 { border-radius: 0 !important; }
|
|
.rounded-1 { border-radius: $border-radius !important; }
|
|
.rounded-2 { border-radius: $border-radius * 2 !important; }
|