Skip to content

Commit

Permalink
CSS styles fix
Browse files Browse the repository at this point in the history
  • Loading branch information
syadykin committed Apr 9, 2021
1 parent 468cb43 commit 1603c80
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/js/components/Forecast.styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ const useStyles = createUseStyles({
day: {
width: '25%',
textAlign: 'center',
margin: 10,
margin: '10px 0',
padding: '0 10px',
'&:not(:first-child)': {
borderLeft: ({ theme }) => `solid 1px ${theme.forecastSeparatorColor}`,
},
Expand Down
2 changes: 1 addition & 1 deletion src/js/components/WeatherIcon.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ WeatherIcon.propTypes = {
WeatherIcon.defaultProps = {
color: '#4BC4F7',
size: 40,
viewBox: '0 0 35 40',
viewBox: '0 -5 35 40',
};

export default WeatherIcon;

0 comments on commit 1603c80

Please sign in to comment.