質問編集履歴
4
修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -176,6 +176,8 @@
|
|
176
176
|
|
177
177
|
```
|
178
178
|
|
179
|
+
|
180
|
+
|
179
181
|
### 試したこと
|
180
182
|
|
181
183
|
|
3
修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -28,7 +28,7 @@
|
|
28
28
|
|
29
29
|
### 該当のソースコード
|
30
30
|
|
31
|
-
|
31
|
+
new.html.erb
|
32
32
|
|
33
33
|
```ruby
|
34
34
|
|
2
修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -30,7 +30,7 @@
|
|
30
30
|
|
31
31
|
|
32
32
|
|
33
|
-
```
|
33
|
+
```ruby
|
34
34
|
|
35
35
|
|
36
36
|
|
@@ -104,9 +104,11 @@
|
|
104
104
|
|
105
105
|
```
|
106
106
|
|
107
|
-
|
107
|
+
application.routes
|
108
108
|
|
109
|
+
```ruby
|
110
|
+
|
109
|
-
ails.application.routes.draw do
|
111
|
+
Rails.application.routes.draw do
|
110
112
|
|
111
113
|
devise_for :users
|
112
114
|
|
@@ -116,7 +118,9 @@
|
|
116
118
|
|
117
119
|
```
|
118
120
|
|
119
|
-
|
121
|
+
users_controller
|
122
|
+
|
123
|
+
```ruby
|
120
124
|
|
121
125
|
class UsersController < ApplicationController
|
122
126
|
|
1
追加致しました
test
CHANGED
File without changes
|
test
CHANGED
@@ -138,6 +138,40 @@
|
|
138
138
|
|
139
139
|
```
|
140
140
|
|
141
|
+
second_header.css
|
142
|
+
|
143
|
+
```ruby
|
144
|
+
|
145
|
+
.second-header {
|
146
|
+
|
147
|
+
width: 100%;
|
148
|
+
|
149
|
+
min-width: 800px;
|
150
|
+
|
151
|
+
height: 130px;
|
152
|
+
|
153
|
+
background-color: #f5f5f5;
|
154
|
+
|
155
|
+
display: flex;
|
156
|
+
|
157
|
+
align-items: center;
|
158
|
+
|
159
|
+
justify-content: center;
|
160
|
+
|
161
|
+
}
|
162
|
+
|
163
|
+
|
164
|
+
|
165
|
+
.second-logo {
|
166
|
+
|
167
|
+
width: 185px;
|
168
|
+
|
169
|
+
height: 49px;
|
170
|
+
|
171
|
+
}
|
172
|
+
|
173
|
+
```
|
174
|
+
|
141
175
|
### 試したこと
|
142
176
|
|
143
177
|
|