You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
833 B
22 lines
833 B
//************************************************************************//
|
|
// Shorthand Border-radius mixins
|
|
//************************************************************************//
|
|
@mixin border-top-radius($radii) {
|
|
@include prefixer(border-top-left-radius, $radii, spec);
|
|
@include prefixer(border-top-right-radius, $radii, spec);
|
|
}
|
|
|
|
@mixin border-bottom-radius($radii) {
|
|
@include prefixer(border-bottom-left-radius, $radii, spec);
|
|
@include prefixer(border-bottom-right-radius, $radii, spec);
|
|
}
|
|
|
|
@mixin border-left-radius($radii) {
|
|
@include prefixer(border-top-left-radius, $radii, spec);
|
|
@include prefixer(border-bottom-left-radius, $radii, spec);
|
|
}
|
|
|
|
@mixin border-right-radius($radii) {
|
|
@include prefixer(border-top-right-radius, $radii, spec);
|
|
@include prefixer(border-bottom-right-radius, $radii, spec);
|
|
}
|
|
|