回答編集履歴
2
修正
test
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
|
5
5
|
```CSS
|
6
6
|
|
7
|
-
@media screen and (max-width:800px) {
|
7
|
+
@media screen and (max-width: 800px) {
|
8
8
|
|
9
9
|
/* どちらか片方は不要かもしれません。 */
|
10
10
|
|
@@ -23,3 +23,33 @@
|
|
23
23
|
}
|
24
24
|
|
25
25
|
```
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
---
|
30
|
+
|
31
|
+
追記:
|
32
|
+
|
33
|
+
ステップの白背景のパネルについては、以下のように指定するとよさそうです。
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
```CSS
|
38
|
+
|
39
|
+
@media screen and (max-width: 800px) {
|
40
|
+
|
41
|
+
.stepbox {
|
42
|
+
|
43
|
+
margin-left: auto;
|
44
|
+
|
45
|
+
margin-right: auto;
|
46
|
+
|
47
|
+
width: calc(100% - 20px - 20px); /* 「20px」は左右の余白。好きなように調整してください */
|
48
|
+
|
49
|
+
max-width: 400px; /* 400pxはStepパネルの横幅、好きなように設定してください */
|
50
|
+
|
51
|
+
}
|
52
|
+
|
53
|
+
}
|
54
|
+
|
55
|
+
```
|
1
修正
test
CHANGED
@@ -5,6 +5,8 @@
|
|
5
5
|
```CSS
|
6
6
|
|
7
7
|
@media screen and (max-width:800px) {
|
8
|
+
|
9
|
+
/* どちらか片方は不要かもしれません。 */
|
8
10
|
|
9
11
|
.flex {
|
10
12
|
|