Sha256: 1e4835a2ab0980e999512bd243aa118c564a0092877586a86496fe7438090183
Contents?: true
Size: 574 Bytes
Versions: 4
Compression:
Stored size: 574 Bytes
Contents
// Border Radius (Shorthand) // Provides a shorthand syntax to target and add border radii to both corners on one side of a box @mixin border-top-radius($radii) { border-top-left-radius: $radii; border-top-right-radius: $radii; } @mixin border-right-radius($radii) { border-bottom-right-radius: $radii; border-top-right-radius: $radii; } @mixin border-bottom-radius($radii) { border-bottom-left-radius: $radii; border-bottom-right-radius: $radii; } @mixin border-left-radius($radii) { border-bottom-left-radius: $radii; border-top-left-radius: $radii; }
Version data entries
4 entries across 4 versions & 2 rubygems