2016-09-09 14:21:40 +08:00
|
|
|
//
|
2016-11-27 08:44:16 +08:00
|
|
|
// Border
|
2016-09-09 14:21:40 +08:00
|
|
|
//
|
|
|
|
|
2016-11-28 14:23:12 +08:00
|
|
|
.border-0 { border: 0 !important; }
|
|
|
|
.border-top-0 { border-top: 0 !important; }
|
|
|
|
.border-right-0 { border-right: 0 !important; }
|
2016-11-27 08:44:16 +08:00
|
|
|
.border-bottom-0 { border-bottom: 0 !important; }
|
2016-11-28 14:23:12 +08:00
|
|
|
.border-left-0 { border-left: 0 !important; }
|
2016-09-09 14:21:40 +08:00
|
|
|
|
|
|
|
//
|
|
|
|
// Border-radius
|
|
|
|
//
|
|
|
|
|
|
|
|
.rounded {
|
2017-06-18 10:05:36 +08:00
|
|
|
border-radius: $border-radius !important;
|
2016-09-09 14:21:40 +08:00
|
|
|
}
|
|
|
|
.rounded-top {
|
2017-06-18 10:05:36 +08:00
|
|
|
border-top-left-radius: $border-radius !important;
|
|
|
|
border-top-right-radius: $border-radius !important;
|
2016-09-09 14:21:40 +08:00
|
|
|
}
|
|
|
|
.rounded-right {
|
2017-06-18 10:05:36 +08:00
|
|
|
border-top-right-radius: $border-radius !important;
|
|
|
|
border-bottom-right-radius: $border-radius !important;
|
2016-09-09 14:21:40 +08:00
|
|
|
}
|
|
|
|
.rounded-bottom {
|
2017-06-18 10:05:36 +08:00
|
|
|
border-bottom-right-radius: $border-radius !important;
|
2017-06-18 13:39:54 +08:00
|
|
|
border-bottom-left-radius: $border-radius !important;
|
2016-09-09 14:21:40 +08:00
|
|
|
}
|
|
|
|
.rounded-left {
|
2017-06-18 10:05:36 +08:00
|
|
|
border-top-left-radius: $border-radius !important;
|
|
|
|
border-bottom-left-radius: $border-radius !important;
|
2016-09-09 14:21:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.rounded-circle {
|
|
|
|
border-radius: 50%;
|
|
|
|
}
|
2016-11-27 08:47:53 +08:00
|
|
|
|
|
|
|
.rounded-0 {
|
|
|
|
border-radius: 0;
|
|
|
|
}
|