mirror of
https://github.com/twbs/bootstrap.git
synced 2024-11-29 11:24:18 +01:00
54908a95a8
* Clean up some utilities - Align CSS properties - In `_spacing.scss`, we had a comment saying what 'a' was for, but we removed that so this comment no longer applies * Remove '-xs' from `.navbar-toggleable-xs` and remove duplication * Fix outdated classes to use newer ones
38 lines
677 B
SCSS
38 lines
677 B
SCSS
//
|
|
// Border
|
|
//
|
|
|
|
.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; }
|
|
|
|
//
|
|
// 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%;
|
|
}
|
|
|
|
.rounded-0 {
|
|
border-radius: 0;
|
|
}
|