This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // $dir = Direction of gradient | |
| // $from = Starting color | |
| // $to = Ending color | |
| // $width = Border width/thickness | |
| @mixin border-gradient($dir, $from, $to, $width) { | |
| border-left: $width solid $from; | |
| border-right: $width solid $to; | |
| background-image: | |
| // Needed for both the top and bottom borders |