@vope/scss
v2.4.3
Published
增加SCSS方法、内置多个强大的mixin
Downloads
29
Readme
@vope/scss
Install
npm install @vope/scss
API
npm 命令
Usage
Function fcalc 对原生函数 calc 扩展了强大的计算能力
.content{
--basic-value: 50px;
$this-width: fcalc-single(--basic-value, 2, 1); //calc(var(--basic-value) * 2)
$this-height: fcalc((exp: --basic-value, multiple: 2)); //calc(var(--basic-value) / 2)
$this-left: fcalc(($this-height, -10%, 3em)); //calc(var(--basic-value) / 2 - 10% + 3em)
}