_variable.scssファイルにカラーコードを格納した変数をまとめて管理しやすくしたいのですが、
呼び出しの記述が間違っているのか上手く呼び出しが実行されません。
以下は試したコードなのですが、記述内容はどこがまちがっているのでしょうか?
試したこと:
・@import "variables";から
@import "_variables.scss";で省略なしで実行。
・スペル間違いは無し
・呼び出し先のファイルに直接変数を定義し、呼び出して実行は問題ありませんでした。
「_header.scss」
scss
1@import "variables"; 2// $color-main: #FFFFFF; 3// $color-title: #333333; 4// $color-tool: #3F51B5; 5.page-header { 6 .container { 7 display: flex; 8 justify-content: space-between; 9 position: fixed; 10 width: 100%; 11 height: 100px; 12 padding: 0 140px; 13//こちらのバックグラウンド色を変数を呼び出して変更したい。 14 background: $color-title; 15 }
「_variable.scss」
scss
1// ベース色 2$color-main:#FFFFFF; 3$color-title:#333333; 4$co: red;
よろしくお願いいたします。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/03/10 05:23
2020/03/11 02:39 編集