sass-styling
2
总安装量
2
周安装量
#70304
全站排名
安装命令
npx skills add https://github.com/simon-jarillo/prueba-skills --skill sass-styling
Agent 安装分布
claude-code
2
codex
1
github-copilot
1
Skill 文档
Sass/SCSS
CSS preprocessing for scalable stylesheets.
Variables
$primary: #3498db;
$spacing: 8px;
.button {
background: $primary;
padding: $spacing * 2;
}
Mixins
@mixin flex-center {
display: flex;
justify-content: center;
align-items: center;
}
.container {
@include flex-center;
}
Resources
- Sass: https://sass-lang.com