File tree Expand file tree Collapse file tree
src/pages/dashboard/services/WeatherData Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -113,21 +113,21 @@ const WeatherDataPage = () => {
113113 const { str, icon } = degreeConvert ( timeData . wind_direction ?? 0 ) ;
114114 return < Fragment key = { `id-time-${ date } -${ time } ` } >
115115 < Box display = { 'flex' } flex = { 1 } justifyContent = { 'space-between' } alignItems = { 'center' } gap = { 2 } >
116- < Box display = { 'flex' } alignItems = { 'center' } flex = { 1 } >
116+ < Box display = { 'flex' } alignItems = { 'center' } gap = { 1 } flex = { 1 } >
117117 < SvgIcon children = { < AccessTimeIcon /> } />
118118 { time }
119119 </ Box >
120- < Box display = { 'flex' } alignItems = { 'center' } flex = { 1 } >
120+ < Box display = { 'flex' } alignItems = { 'center' } gap = { 1 } flex = { 1 } >
121121 < SvgIcon children = { < ThermostatIcon /> } />
122122 { timeData . ambient_temperature } °C
123123 </ Box >
124- < Box display = { 'flex' } alignItems = { 'center' } flex = { 1 } >
124+ < Box display = { 'flex' } alignItems = { 'center' } gap = { 1 } flex = { 1 } >
125125 < SvgIcon children = { < WaterDropIcon /> } />
126126 { timeData . ambient_humidity } %
127127 </ Box >
128128 < Box display = { 'flex' } flexDirection = { 'column' } alignItems = { 'center' } flex = { 1 } >
129- < Box display = { 'flex' } alignItems = { 'center' } > < SvgIcon children = { < AirIcon /> } /> { timeData . wind_speed } km/h</ Box >
130- < Box display = { 'flex' } alignItems = { 'center' } > < SvgIcon children = { icon } /> { str } </ Box >
129+ < Box display = { 'flex' } alignItems = { 'center' } gap = { 1 } > < SvgIcon children = { < AirIcon /> } /> { timeData . wind_speed } km/h</ Box >
130+ < Box display = { 'flex' } alignItems = { 'center' } gap = { 1 } > < SvgIcon children = { icon } /> { str } </ Box >
131131 </ Box >
132132 </ Box >
133133 </ Fragment >
You can’t perform that action at this time.
0 commit comments