Commit 3137eec3 authored by Chris Rebert's avatar Chris Rebert
Browse files

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

Reunites the family.
Closes #17791
parent 781916ca
Showing with 6 additions and 6 deletions
+6 -6
......@@ -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;
......
// 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;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment