CSS Structure
一つのコンポーネントにつき一つのファイル
/* css/components/search-form.scss */
.search-form {
> .button { /* ... */ }
> .field { /* ... */ }
> .label { /* ... */ }
// variants
&.-small { /* ... */ }
&.-wide { /* ... */ }
}glob パターンマッチを使用する
@import 'components/*';過剰なネストを避ける
Last updated