1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-28 07:39:57 +02: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

@@ -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;