aboutsummaryrefslogtreecommitdiff
path: root/_scss/utilities/_borderradius.scss
blob: dd8f1332f7192a1c4990d5df58c023b78fbddcb3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Border Radius
//
// The border-radius CSS property lets you round the corners of an element's outer border edge. You can specify a single radius to make circular corners, or two radii to make elliptical corners.
//
// Values: <length-percentage> | <length-percentage>
// Default: 0
//
// https://www.w3.org/TR/css-backgrounds-3/#propdef-border-radius
@mixin borderradius($value: 0) {
  -webkit-border-radius: $value;
     -moz-border-radius: $value;
          border-radius: $value;
}