X-Git-Url: https://git.danix.xyz/?a=blobdiff_plain;f=assets%2Fsass%2Fbourbon%2Fbourbon%2Flibrary%2F_border-width.scss;fp=assets%2Fsass%2Fbourbon%2Fbourbon%2Flibrary%2F_border-width.scss;h=0000000000000000000000000000000000000000;hb=608ee6ced3bb9f1200894828d5f91dd8d37e3cce;hp=a64e4b88692df5555378f56310d777a80b398322;hpb=43912bcaf275017baa77551f359b0b2be498e5b3;p=theme-danix.xyz.git diff --git a/assets/sass/bourbon/bourbon/library/_border-width.scss b/assets/sass/bourbon/bourbon/library/_border-width.scss deleted file mode 100644 index a64e4b8..0000000 --- a/assets/sass/bourbon/bourbon/library/_border-width.scss +++ /dev/null @@ -1,25 +0,0 @@ -@charset "UTF-8"; - -/// Provides a concise, one-line method for setting `border-width` on specific -/// edges of a box. Use a `null` value to “skip” edges of the box with standard -/// CSS shorthand. -/// -/// @argument {list} $values -/// List of border widths; accepts CSS shorthand. -/// -/// @example scss -/// .element { -/// @include border-width(1em null 20px); -/// } -/// -/// // CSS Output -/// .element { -/// border-bottom-width: 20px; -/// border-top-width: 1em; -/// } -/// -/// @require {mixin} _directional-property - -@mixin border-width($values) { - @include _directional-property(border, width, $values); -}