mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
10 lines
327 B
SCSS
10 lines
327 B
SCSS
|
|
// Item Mixins
|
|
// --------------------------------------------------
|
|
|
|
@mixin item-push-svg-url($fill) {
|
|
$item-detail-push-svg: "<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 20'><path d='M2,20l-2-2l8-8L0,2l2-2l10,10L2,20z' fill='#{$fill}'/></svg>";
|
|
|
|
@include svg-background-image($item-detail-push-svg, true);
|
|
}
|