From ed1656007ca80bf5d173dadf8924c4409c7e98e2 Mon Sep 17 00:00:00 2001 From: Andros Fenollosa Date: Thu, 1 Jun 2023 16:55:20 +0200 Subject: [PATCH] Update _mixins.sass --- _mixins.sass | 33 --------------------------------- 1 file changed, 33 deletions(-) diff --git a/_mixins.sass b/_mixins.sass index d70e8c5..f8dfc27 100644 --- a/_mixins.sass +++ b/_mixins.sass @@ -48,28 +48,6 @@ padding: initial margin: initial -/* - * Add a border through the shadows avoiding extra space. - * $size: 1px (default), unit - * $color: black (default), color - * $side: all (default), top, right, bottom, left - * - * Examples: @include border(), @include border(2px, red), @include border(2px, red, left) - */ -@mixin border($size: 1px, $color: black, $side: all) - border: 0 - -webkit-appearance: none - @if $side == 'all' - box-shadow: inset 0 0 0 $size $color - @else if $side == 'top' - box-shadow: inset 0 $size 0 0 $color - @else if $side == 'right' - box-shadow: inset -#{$size} 0 0 0 $color - @else if $side == 'left' - box-shadow: inset $size 0 0 0 $color - @else if $side == 'bottom' - box-shadow: inset 0 -#{$size} 0 0 $color - /* * Add a rotation animation. * $speed: 1s (default), seconds @@ -161,14 +139,3 @@ justify-content: center align-items: center -/* - * Mimics grid-gap separation for flex - * - * Examples: @include gridGap(2.5rem) - */ -@mixin gridGap($size: 1rem) - margin: 0 $size - &:first-child - margin-left: 0 - &:last-child - margin-right: 0