-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
border-bottom-right-radius.scss
33 lines (33 loc) · 1.07 KB
/
border-bottom-right-radius.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/// Rounds bottom right corner of element
/// @param {string} $value
/// @returns {CSS} - `Property: Value` with prefixed properties
/// @see {link} - https://developer.mozilla.org/en-US/docs/Web/CSS/border-bottom-right-radius
/// @example - Available values
/// - `_length_`
/// - `_percentage_`
/// - `initial`
/// - `inherit`
/// @example scss - Usage of border-bottom-right-radius
/// .example-class {
/// @include border-bottom-right-radius($value: 50%);
/// }
/// @example css - Results of border-bottom-right-radius
/// .example-class {
/// -webkit-border-bottom-right-radius: 50%;
/// -moz-border-bottom-right-radius: 50%;
/// border-bottom-right-radius: 50%;
/// }
/// @requires {mixin} render-vendor-prefixes
/// @author S0AndS0
/// @license AGPL-3.0
@mixin border-bottom-right-radius($value) {
@include render-vendor-prefixes(
$property: border-bottom-right-radius,
$value: $value,
$vendor-list: (
-webkit, // Chrome 5.0/4.0, Safari 5.0/3.1
-moz, // Firefox 4.0/3.0
),
$prefix: property,
);
}