質問編集履歴
2
誤字
test
CHANGED
File without changes
|
test
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
|
4
4
|
|
5
|
-
easy sassでscssをm
|
5
|
+
easy sassでscssをmain.cssにコンパイルしたいのですが反映されません。
|
6
6
|
|
7
7
|
パスも間違えていないのになぜでしょうか?
|
8
8
|
|
1
ページの詳細
test
CHANGED
File without changes
|
test
CHANGED
@@ -5,3 +5,45 @@
|
|
5
5
|
easy sassでscssをmsin.cssにコンパイルしたいのですが反映されません。
|
6
6
|
|
7
7
|
パスも間違えていないのになぜでしょうか?
|
8
|
+
|
9
|
+
|
10
|
+
|
11
|
+
easy sass
|
12
|
+
|
13
|
+
{
|
14
|
+
|
15
|
+
"easysass.targetDir": "./css/main.css"
|
16
|
+
|
17
|
+
}
|
18
|
+
|
19
|
+
とし、
|
20
|
+
|
21
|
+
_header.sccsで
|
22
|
+
|
23
|
+
header {
|
24
|
+
|
25
|
+
display: flex;
|
26
|
+
|
27
|
+
justify-content: space-between;
|
28
|
+
|
29
|
+
align-items: center;
|
30
|
+
|
31
|
+
width: 100%;
|
32
|
+
|
33
|
+
color: red;
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
}
|
38
|
+
|
39
|
+
と指定しました。
|
40
|
+
|
41
|
+
main.sccsで
|
42
|
+
|
43
|
+
@import "reset";
|
44
|
+
|
45
|
+
@import "lib";
|
46
|
+
|
47
|
+
@import "header";
|
48
|
+
|
49
|
+
としました。
|