Commit eb1313d2 authored by João Lucas's avatar João Lucas Committed by Martijn Cuppens
Browse files

Create `border-top-left-radius` and `border-bottom-right-radius` mixins (#28100)

* Create border-top-left-radius mixin
* Create border-bottom-right-radius mixin
parent 311d6dab
Showing with 12 additions and 0 deletions
+12 -0
...@@ -38,12 +38,24 @@ ...@@ -38,12 +38,24 @@
} }
} }
@mixin border-top-left-radius($radius) {
@if $enable-rounded {
border-top-left-radius: $radius;
}
}
@mixin border-top-right-radius($radius) { @mixin border-top-right-radius($radius) {
@if $enable-rounded { @if $enable-rounded {
border-top-right-radius: $radius; border-top-right-radius: $radius;
} }
} }
@mixin border-bottom-right-radius($radius) {
@if $enable-rounded {
border-bottom-right-radius: $radius;
}
}
@mixin border-bottom-left-radius($radius) { @mixin border-bottom-left-radius($radius) {
@if $enable-rounded { @if $enable-rounded {
border-bottom-left-radius: $radius; border-bottom-left-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