sass-styling

Installation
SKILL.md

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

Weekly Installs
2
First Seen
Jan 26, 2026
Installed on
claude-code2
codex1
github-copilot1
gemini-cli1