Skip to content

Commit

Permalink
style adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
joshbuchea committed Oct 24, 2024
1 parent 28af25f commit 3703384
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions src/scenes/Home/TerrawareHomeView/PlantingSiteStats.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ export const PlantingSiteStats = () => {
sx={{
border: `1px solid ${theme.palette.TwClrBrdrTertiary}`,
borderRadius: '8px',
boxShadow: 'rgba(58, 68, 69, 0.2) 0px 4px 8px',
display: 'flex',
flexDirection: isDesktop ? 'row' : 'column',
justifyContent: 'space-evenly',
Expand Down Expand Up @@ -115,7 +116,6 @@ export const PlantingSiteStats = () => {
display: 'flex',
flexDirection: 'column',
alignItems: isDesktop ? 'normal' : 'center',
paddingRight: isDesktop ? '16px' : 0,
}}
>
<Typography
Expand Down Expand Up @@ -196,11 +196,7 @@ export const PlantingSiteStats = () => {
</Box>
</Grid>

<Grid
item
xs={primaryGridSize()}
sx={isDesktop ? { paddingRight: '16px', textAlign: 'right' } : { textAlign: 'center' }}
>
<Grid item xs={primaryGridSize()} sx={{ textAlign: isDesktop ? 'right' : 'center' }}>
<Link
onClick={() => {
navigate(APP_PATHS.PLANTS_DASHBOARD);
Expand Down

0 comments on commit 3703384

Please sign in to comment.