Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ここで簡単なことを試しています。メインクラスに応じてグローバル変数を設定したい。例えば:
body.professional { $c1: #00B143; $c2: #151018; } .container { color: $c1; }
これは可能ですか?
ありがとう!
とった。単純。
すべての css クラスを別のファイルにビルドしてからインクルードします。
body.professional { $c1: #00B143; $c2: #151018; @import 'base.scss'; } body.clientes { $c1: #4A8FE5; $c2: #393C42; @import 'base.scss'; }