0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-17 09:52:29 +01:00

Move border-radius mixin from scss/_mixins.scss to scss/mixins/_border-radius.scss

Reunites the family.
Closes #17791
This commit is contained in:
Chris Rebert 2015-10-07 00:05:38 -07:00
parent 781916cab6
commit 3137eec370
2 changed files with 6 additions and 6 deletions

View File

@ -2,12 +2,6 @@
//
// Used in conjunction with global variables to enable certain theme features.
@mixin border-radius($radius: $border-radius) {
@if $enable-rounded {
border-radius: $radius;
}
}
@mixin box-shadow($shadow...) {
@if $enable-shadows {
box-shadow: $shadow;

View File

@ -1,5 +1,11 @@
// Single side border-radius
@mixin border-radius($radius: $border-radius) {
@if $enable-rounded {
border-radius: $radius;
}
}
@mixin border-top-radius($radius) {
@if $enable-rounded {
border-top-right-radius: $radius;