質問編集履歴

3

記載ミス

2020/11/01 08:37

投稿

aiai8976
aiai8976

スコア112

test CHANGED
File without changes
test CHANGED
@@ -58,6 +58,8 @@
58
58
 
59
59
  <Box flex={true} overflow={'scroll'} >
60
60
 
61
+ // スクロールできない
62
+
61
63
  <Card height="300px" background="brand"> sample</Card>
62
64
 
63
65
  <Card height="300px" background="brand"> sample</Card>
@@ -67,6 +69,8 @@
67
69
 
68
70
 
69
71
 
72
+
73
+         // うまくスクロールできる
70
74
 
71
75
  {/*<Table caption='Simple Table'>
72
76
 

2

質問の解答

2020/11/01 08:37

投稿

aiai8976
aiai8976

スコア112

test CHANGED
File without changes
test CHANGED
@@ -49,3 +49,57 @@
49
49
  </Box>
50
50
 
51
51
  ```
52
+
53
+
54
+
55
+ ```
56
+
57
+ <Box xflex={true} fill >
58
+
59
+ <Box flex={true} overflow={'scroll'} >
60
+
61
+ <Card height="300px" background="brand"> sample</Card>
62
+
63
+ <Card height="300px" background="brand"> sample</Card>
64
+
65
+ <Card height="300px" background="brand"> sample</Card>
66
+
67
+
68
+
69
+
70
+
71
+ {/*<Table caption='Simple Table'>
72
+
73
+ <TableBody>
74
+
75
+ {DATA.map(datum => (
76
+
77
+ <TableRow key={datum.id}>
78
+
79
+ {COLUMNS.map(c => (
80
+
81
+ <TableCell key={c.property} scope={c.dataScope} align={c.align}>
82
+
83
+ <Text>
84
+
85
+ {c.format ? c.format(datum) : datum[c.property]}
86
+
87
+ </Text>
88
+
89
+ </TableCell>
90
+
91
+ ))}
92
+
93
+ </TableRow>
94
+
95
+ ))}
96
+
97
+ </TableBody>
98
+
99
+ </Table>*/}
100
+
101
+ </Box>
102
+
103
+ </Box>
104
+
105
+ ```

1

変更

2020/11/01 08:36

投稿

aiai8976
aiai8976

スコア112

test CHANGED
File without changes
test CHANGED
File without changes