Skip to content
Closed
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/cards/ha-weather-card.html
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@
}

.attributes,
.templow {
.templow,
.precipitation {
color: var(--secondary-text-color);
}
</style>
Expand Down Expand Up @@ -100,6 +101,9 @@
<template is="dom-if" if="[[item.templow]]">
<div class="templow">[[item.templow]]°</div>
</template>
<template is="dom-if" if="[[item.precipitation]]">
<div class="precipitation">[[item.precipitation]]</div>
</template>
</div>
</template>
</div>
Expand Down