Skip to content

Commit

Permalink
Merge pull request #17 from artem-sedykh/dev
Browse files Browse the repository at this point in the history
hot fix HA 0.110.0
  • Loading branch information
artem-sedykh authored May 20, 2020
2 parents 8a7c77c + 8f2a4cc commit 4f4bfc5
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Inspired by [mini media player](https://github.com/kalkih/mini-media-player).

```yaml
resources:
- url: /local/mini-humidifier-bundle.js?v=1.0.8
- url: /local/mini-humidifier-bundle.js?v=1.0.9
type: module
```
Expand All @@ -43,7 +43,7 @@ Inspired by [mini media player](https://github.com/kalkih/mini-media-player).

```yaml
resources:
- url: /local/mini-humidifier-bundle.js?v=1.0.8
- url: /local/mini-humidifier-bundle.js?v=1.0.9
type: module
```

Expand All @@ -56,7 +56,7 @@ Inspired by [mini media player](https://github.com/kalkih/mini-media-player).

```yaml
resources:
- url: /local/mini-humidifier-bundle.js?v=1.0.8
- url: /local/mini-humidifier-bundle.js?v=1.0.9
type: module
```

Expand Down
5 changes: 5 additions & 0 deletions release_notes/v1.0.9.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
## v1.0.9
[![Downloads](https://img.shields.io/github/downloads/artem-sedykh/mini-humidifier/v1.0.9/total.svg)](https://github.com/artem-sedykh/mini-humidifier/releases/tag/v1.0.9)
### FIXED

- icon size fix for HA 0.110.0
2 changes: 1 addition & 1 deletion src/components/info.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ class MiniHumidifierInfo extends LitElement {
height: calc(var(--mh-unit) * .475);
width: calc(var(--mh-unit) * .5);
color: var(--mh-icon-color);
--mdc-icon-size: calc(var(--mh-unit) * .425);
--mdc-icon-size: calc(var(--mh-unit) * 0.5);
}
.state__value {
margin: 0 1px;
Expand Down
2 changes: 1 addition & 1 deletion src/components/targetHumiditySlider.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ class MiniHumidifierTargetHumiditySlider extends LitElement {
height: calc(var(--mh-unit) * .475);
width: calc(var(--mh-unit) * .5);
color: var(--mh-icon-color);
--mdc-icon-size: calc(var(--mh-unit) * .425);
--mdc-icon-size: calc(var(--mh-unit) * 0.5);
}
.state__value {
font-size: calc(var(--mh-unit) * .35);
Expand Down
4 changes: 2 additions & 2 deletions src/style.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,15 +120,15 @@ const style = css`
height: calc(var(--mh-unit) * .475);
width: calc(var(--mh-unit) * .5);
min-width: calc(var(--mh-unit) * .5);
--mdc-icon-size: calc(var(--mh-unit) * .375);
--mdc-icon-size: calc(var(--mh-unit) * 0.5);
}
.entity__secondary_info {
margin-top: -2px;
}
.entity__secondary_info__name {
font-size: calc(var(--mh-unit) * .35);
font-weight: var(--mh-info-font-weight);
line-height: calc(var(--mh-unit) * .525);
line-height: calc(var(--mh-unit) * .5);
}
mh-powerstrip {
flex: 1;
Expand Down

0 comments on commit 4f4bfc5

Please sign in to comment.