lyh2668 / scss-mixins

一些常用的scss-mixins

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

准备收集一些常用的mixins

  1. 内角弧度mixins
/**
 * $color 颜色
 * $radius 弧度
 * $positions: 从 'top-left', 'top-right', 'bottom-left', 'bottom-right'     
 * 选出任意N个有效值填入即可
 **/
@mixin inner-round-corner ($color, $radius, $positions...)
// 调用example
@include inner-round-corner(red, 5px, 'top-left', 'top-right');

About

一些常用的scss-mixins


Languages

Language:CSS 100.0%