Skip to content

Commit

Permalink
fix icons alignment
Browse files Browse the repository at this point in the history
  • Loading branch information
y-kitazawa0 committed Feb 2, 2024
1 parent 19b595d commit e84d72d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/components/WeatherApp/WeatherApp.css
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ body {

.sun-temp-info {
display: flex;
flex-direction: column;
justify-content: space-between;
}

Expand Down
2 changes: 1 addition & 1 deletion src/components/WeatherApp/WeatherApp.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -229,8 +229,8 @@ const WeatherApp = () => {
<Pressure pressure={weatherData.pressure} />
</div>
<div className="sun-temp-info">
<SunInfo sunrise={sunInfoData.sunriseTime} sunset={sunInfoData.sunsetTime} />
<TempInfo temp={tempData.temp}/>
<SunInfo sunrise={sunInfoData.sunriseTime} sunset={sunInfoData.sunsetTime} />
</div>
</div>
</div>
Expand Down

0 comments on commit e84d72d

Please sign in to comment.