This repository has been archived on 2023-08-16. You can view files and clone it, but cannot push or open issues or pull requests.
Omphaloskepsis/plugins/jetpack/scss/_utilities/mixins/_gradient--vertical.scss

8 lines
348 B
SCSS
Raw Normal View History

2018-03-21 18:19:20 +00:00
// ==========================================================================
// Vertical gradient
// ==========================================================================
@mixin gradient--vertical($start, $end){
background-color: $end;
background-image: linear-gradient(top, $start, $end); // Chrome 26, Firefox 16+, IE 10+, Opera 12.10+
}