app/assets/stylesheets/sass-zero/variables/effects.scss in sass-zero-1.0.6 vs app/assets/stylesheets/sass-zero/variables/effects.scss in sass-zero-1.0.7
- old
+ new
@@ -36,10 +36,10 @@
// *******************************************************************
// Ring
// Function for creating outline rings with box-shadows.
// box-shadow: ring($width: 4px);
// *******************************************************************
-@function ring($width: 3px, $color: rgba($blue-500, 0.5), $offset-width: 0px, $offset-color: $white, $inset: false) {
+@function ring($width: 2px, $color: rgba($blue-500, 0.5), $offset-width: 0px, $offset-color: $white, $inset: false) {
@if $inset {
$ring-offset-shadow: inset 0 0 0 $offset-width $offset-color;
$ring-shadow: inset 0 0 0 ($width + $offset-width) $color;
@return $ring-offset-shadow, $ring-shadow, 0 0 #0000;
} @else {