1 Star 0 Fork 0

karasu/大前端PCfront

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
text.scss 908 Bytes
一键复制 编辑 原始数据 按行查看 历史
karasu 提交于 2020-06-28 09:00 . finish
$space: 10;
$spaces: map-merge(
$map1: (
0: 0px,
1: 1 * $space + px,
2: 2 * $space + px,
3: 3 * $space + px,
),
$map2: (
4: 4 * $space + px,
),
);
$uitls: map-merge(
$map1: (
p: (
property: padding,
values: $spaces,
),
m: (
property: margin,
values: $spaces,
),
mx: (
property: margin-left margin-right,
values: $spaces,
),
mt: (
property: margin-top,
values: $spaces,
),
),
$map2: (),
);
@each $key, $value in $uitls {
$values: map-get(
$map: $value,
$key: values,
);
$properties: map-get(
$map: $value,
$key: property,
);
@each $item-key, $item-value in $values {
.#{$key}-#{$item-key} {
@each $var in $properties {
#{$var}: $item-value;
}
}
}
}
// @each $key, $value in $spaces {
// .p-#{$key} {
// padding: $value;
// }
// }
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/karasu/front.git
[email protected]:karasu/front.git
karasu
front
大前端PCfront
master

搜索帮助