File tree 1 file changed +9
-4
lines changed
web-app/src/containers/Overview
1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,11 @@ const styles = {
40
40
description : {
41
41
fontSize : '1rem' ,
42
42
} ,
43
+ meta : {
44
+ display : 'flex' as 'flex' ,
45
+ flexDirection : 'row' as 'row' ,
46
+ flexWrap : 'wrap' as 'wrap' ,
47
+ } ,
43
48
levelList : {
44
49
padding : '0rem 1rem' ,
45
50
} ,
@@ -88,10 +93,10 @@ const Summary = (props: Props) => (
88
93
</ div >
89
94
< h1 css = { styles . title } > { props . title } </ h1 >
90
95
< h3 > { props . description } </ h3 >
91
- < h4 >
92
- < span css = { { marginRight : '2rem' } } > Created by { props . createdBy . name } </ span >
93
- < span > Last updated { moment ( props . updatedAt ) . format ( 'M/YYYY' ) } </ span >
94
- </ h4 >
96
+ < h5 css = { styles . meta } >
97
+ < div css = { { marginRight : '2rem' } } > Created by { props . createdBy . name } </ div >
98
+ < div > Last updated { moment ( props . updatedAt ) . format ( 'M/YYYY' ) } </ div >
99
+ </ h5 >
95
100
</ div >
96
101
< div >
97
102
< div css = { styles . levelList } >
You can’t perform that action at this time.
0 commit comments