2016-09-09 08:21:40 +02:00
|
|
|
//
|
2016-11-27 01:44:16 +01:00
|
|
|
// Border
|
2016-09-09 08:21:40 +02:00
|
|
|
//
|
|
|
|
|
2016-11-28 07:23:12 +01:00
|
|
|
.border-0 { border: 0 !important; }
|
|
|
|
.border-top-0 { border-top: 0 !important; }
|
|
|
|
.border-right-0 { border-right: 0 !important; }
|
2016-11-27 01:44:16 +01:00
|
|
|
.border-bottom-0 { border-bottom: 0 !important; }
|
2016-11-28 07:23:12 +01:00
|
|
|
.border-left-0 { border-left: 0 !important; }
|
2016-09-09 08:21:40 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Border-radius
|
|
|
|
//
|
|
|
|
|
|
|
|
.rounded {
|
|
|
|
@include border-radius($border-radius);
|
|
|
|
}
|
|
|
|
.rounded-top {
|
|
|
|
@include border-top-radius($border-radius);
|
|
|
|
}
|
|
|
|
.rounded-right {
|
|
|
|
@include border-right-radius($border-radius);
|
|
|
|
}
|
|
|
|
.rounded-bottom {
|
|
|
|
@include border-bottom-radius($border-radius);
|
|
|
|
}
|
|
|
|
.rounded-left {
|
|
|
|
@include border-left-radius($border-radius);
|
|
|
|
}
|
|
|
|
|
|
|
|
.rounded-circle {
|
|
|
|
border-radius: 50%;
|
|
|
|
}
|
2016-11-27 01:47:53 +01:00
|
|
|
|
|
|
|
.rounded-0 {
|
|
|
|
border-radius: 0;
|
|
|
|
}
|