Sha256: 1173a558038e6577a7b09cf189909f670513d426f5c91dab47ed992d3c982e6f
Contents?: true
Size: 757 Bytes
Versions: 4
Compression:
Stored size: 757 Bytes
Contents
// Single side border-radius @mixin border-radius($radius: $border-radius) { @if $enable-rounded { border-radius: $radius; } } @mixin border-top-radius($radius) { @if $enable-rounded { border-top-right-radius: $radius; border-top-left-radius: $radius; } } @mixin border-right-radius($radius) { @if $enable-rounded { border-bottom-right-radius: $radius; border-top-right-radius: $radius; } } @mixin border-bottom-radius($radius) { @if $enable-rounded { border-bottom-right-radius: $radius; border-bottom-left-radius: $radius; } } @mixin border-left-radius($radius) { @if $enable-rounded { border-bottom-left-radius: $radius; border-top-left-radius: $radius; } }
Version data entries
4 entries across 4 versions & 1 rubygems