Skip to content

Commit

Permalink
Fix rendering issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mlamberts78 committed Oct 2, 2024
1 parent 3e17d17 commit dcb4ac3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions dist/weather-chart-card.js
Original file line number Diff line number Diff line change
Expand Up @@ -18617,8 +18617,8 @@ updateChart({ forecasts, forecastChart } = this) {
color: var(--paper-item-icon-color);
}
img {
width: ${this.config.icons_size}px;
height: ${this.config.icons_size}px;
width: 25px;
height: 25px;
}
.card {
padding-top: ${config.title ? '0px' : '16px'};
Expand All @@ -18639,8 +18639,8 @@ updateChart({ forecasts, forecastChart } = this) {
margin-inline-end: 14px;
}
.main img {
width: ${this.config.icons_size * 2}px;
height: ${this.config.icons_size * 2}px;
width: 16px;
height: 16px;
margin-right: 14px;
margin-inline-start: initial;
margin-inline-end: 14px;
Expand Down

0 comments on commit dcb4ac3

Please sign in to comment.