mirror of
https://github.com/twbs/bootstrap.git
synced 2024-12-01 13:24:25 +01:00
31 lines
422 B
SCSS
31 lines
422 B
SCSS
|
//
|
||
|
// Border-width
|
||
|
//
|
||
|
|
||
|
// TBD...?
|
||
|
|
||
|
|
||
|
//
|
||
|
// 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%;
|
||
|
}
|