質問編集履歴

4

情報追加

2020/03/16 09:32

投稿

ayako_sato
ayako_sato

スコア8

test CHANGED
File without changes
test CHANGED
@@ -132,6 +132,12 @@
132
132
 
133
133
  @import "variables";
134
134
 
135
+ @import "guest";
136
+
137
+ @import "user";
138
+
139
+
140
+
135
141
  ```
136
142
 
137
143
  ↑上記scssにはvariables以外の他のスタイルも追加されています。

3

情報追加

2020/03/16 09:32

投稿

ayako_sato
ayako_sato

スコア8

test CHANGED
File without changes
test CHANGED
@@ -28,7 +28,9 @@
28
28
 
29
29
 
30
30
 
31
- ```guest.scss
31
+ guest.scss
32
+
33
+ ```
32
34
 
33
35
  .request {
34
36
 
@@ -72,7 +74,9 @@
72
74
 
73
75
 
74
76
 
75
- ```variables.scss
77
+ variables.scss
78
+
79
+ ```
76
80
 
77
81
  // テキスト
78
82
 

2

誤字訂正

2020/03/13 07:36

投稿

ayako_sato
ayako_sato

スコア8

test CHANGED
File without changes
test CHANGED
@@ -92,7 +92,9 @@
92
92
 
93
93
 
94
94
 
95
- ```application.scss
95
+ application.scss
96
+
97
+ ```
96
98
 
97
99
  /*
98
100
 

1

情報追加

2020/03/13 07:32

投稿

ayako_sato
ayako_sato

スコア8

test CHANGED
File without changes
test CHANGED
@@ -21,14 +21,6 @@
21
21
 
22
22
 
23
23
  ![イメージ説明](4eb3e92858aa9a95078581c3100aef91.png)
24
-
25
-
26
-
27
- ```
28
-
29
- エラーメッセージ
30
-
31
- ```
32
24
 
33
25
 
34
26
 
@@ -98,6 +90,50 @@
98
90
 
99
91
  ```
100
92
 
93
+
94
+
95
+ ```application.scss
96
+
97
+ /*
98
+
99
+ * This is a manifest file that'll be compiled into application.css, which will include all the files
100
+
101
+ * listed below.
102
+
103
+ *
104
+
105
+ * Any CSS and SCSS file within this directory, lib/assets/stylesheets, or any plugin's
106
+
107
+ * vendor/assets/stylesheets directory can be referenced here using a relative path.
108
+
109
+ *
110
+
111
+ * You're free to add application-wide styles to this file and they'll appear at the bottom of the
112
+
113
+ * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
114
+
115
+ * files in this directory. Styles in this file should be added after the last require_* statement.
116
+
117
+ * It is generally better to create a new file per style scope.
118
+
119
+ *
120
+
121
+ *= require_tree .
122
+
123
+ *= require_self
124
+
125
+ */
126
+
127
+ @import "variables";
128
+
129
+ ```
130
+
131
+ ↑上記scssにはvariables以外の他のスタイルも追加されています。
132
+
133
+
134
+
135
+
136
+
101
137
  ### 補足
102
138
 
103
139
  スペルミスもなく半角全角などの相違もなく、該当の「color: $txt-head;」の「$」を削除するとエラーは回避できるのですが、読みこんでいるはずのvariables.scssに指定している色になりません…。