@@ -88,23 +88,23 @@ export default props => (
88
88
</ CardTitle >
89
89
< Box fontSize = { [ 12 , 14 , 16 ] } className = "secondaryText" px = { [ 2 ] } my = { [ 1 , 1 , 0 ] } >
90
90
< LocationIcon className = "icons" />
91
- < span > { props . location } </ span >
91
+ < span > { truncateString ( props . location , 55 ) } </ span >
92
92
</ Box >
93
93
< Box px = { 2 } pb = { [ 2 , 1 ] } >
94
94
< Flex wrap >
95
- < Box fontSize = { [ 12 , 14 , 16 ] } width = { [ 1 , 1 , 0.33 ] } className = "secondaryText" pr = { 1 } mr = { [ 0 ] } my = { [ 1 , 1 , 0 ] } >
95
+ < Box fontSize = { [ 12 , 14 , 16 ] } width = { [ 1 , 1 , 0.38 ] } className = "secondaryText" pr = { 1 } mr = { [ 0 ] } my = { [ 1 , 1 , 0 ] } >
96
96
< TimeIcon className = "icons" />
97
97
< span >
98
98
{ props . tense === 'past'
99
99
? format ( props . time , "ddd MMM Do 'YY" )
100
- : format ( props . time , "h:mm A, ddd MMM Do 'YY" ) }
100
+ : format ( props . time , "ddd MMM Do 'YY, h:mm A " ) }
101
101
</ span >
102
102
</ Box >
103
- < Box fontSize = { [ 12 , 14 , 16 ] } width = { [ 1 , 1 , 0.25 ] } className = "secondaryText" pr = { 1 } mx = { [ 0 ] } my = { [ 1 , 1 , 0 ] } >
103
+ < Box fontSize = { [ 12 , 14 , 16 ] } width = { [ 1 , 1 , 0.24 ] } className = "secondaryText" pr = { 1 } mx = { [ 0 ] } my = { [ 1 , 1 , 0 ] } >
104
104
< AttendeesIcon className = "icons" />
105
105
< span > { props . tense === 'past' ? `${ props . attendees } attended` : `${ props . attendees } attending` } </ span >
106
106
</ Box >
107
- < Box fontSize = { [ 12 , 14 , 16 ] } width = { [ 1 , 1 , 0.25 ] } className = "secondaryText" pr = { 1 } mx = { [ 0 ] } my = { [ 1 , 1 , 0 ] } >
107
+ < Box fontSize = { [ 12 , 14 , 16 ] } width = { [ 1 , 1 , 0.21 ] } className = "secondaryText" pr = { 1 } mx = { [ 0 ] } my = { [ 1 , 1 , 0 ] } >
108
108
{ props . online ? < StreamIcon className = "icons" /> : < TicketIcon className = "icons" /> }
109
109
< span > { props . online ? 'Free session' : 'Free entry' } </ span >
110
110
</ Box >
0 commit comments