comparison default/assets/scss/vendors/bootstrap/utilities/_borders.scss @ 0:1d038bc9b3d2 default tip

Up:default
author Liny <dev@neowd.com>
date Sat, 31 May 2025 09:21:51 +0800
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:1d038bc9b3d2
1 //
2 // Border
3 //
4
5 .border { border: 1px solid $gray-200 !important; }
6 .border-0 { border: 0 !important; }
7 .border-top-0 { border-top: 0 !important; }
8 .border-right-0 { border-right: 0 !important; }
9 .border-bottom-0 { border-bottom: 0 !important; }
10 .border-left-0 { border-left: 0 !important; }
11
12 @each $color, $value in $theme-colors {
13 .border-#{$color} {
14 border-color: $value !important;
15 }
16 }
17
18 .border-white {
19 border-color: $white !important;
20 }
21
22 //
23 // Border-radius
24 //
25
26 .rounded {
27 border-radius: $border-radius !important;
28 }
29 .rounded-top {
30 border-top-left-radius: $border-radius !important;
31 border-top-right-radius: $border-radius !important;
32 }
33 .rounded-right {
34 border-top-right-radius: $border-radius !important;
35 border-bottom-right-radius: $border-radius !important;
36 }
37 .rounded-bottom {
38 border-bottom-right-radius: $border-radius !important;
39 border-bottom-left-radius: $border-radius !important;
40 }
41 .rounded-left {
42 border-top-left-radius: $border-radius !important;
43 border-bottom-left-radius: $border-radius !important;
44 }
45
46 .rounded-circle {
47 border-radius: 50%;
48 }
49
50 .rounded-0 {
51 border-radius: 0;
52 }