Skip to content

v1.8.8

Compare
Choose a tag to compare
@github-actions github-actions released this 19 May 14:53
· 349 commits to main since this release
77fcd7d

Breaking changes

For card_mod users 🤖

You can no longer style chip background and box-shadow with card_mod. You must use theme variables : --chip-background and --chip-box-shadow.

Old style

card_mod:
    style: |
        ha-card {
          box-shadow: none;
          background: none;
        }

New style

card_mod:
    style: |
        ha-card {
          --chip-box-shadow: none;
          --chip-background: none;
        }

What's Changed

New Features 🎉

  • feat(theme): add card text line height variable by @piitaya in #496
  • feat(chip): improve stack in card support by @piitaya in #502

Fixes 🐛

  • fix: hacs version by @acesyde in #498
  • fix(button): ignore button ratio if fill mode for button group by @piitaya in #503
  • fix(chip): restore ha-card element on chip for better styling by @piitaya in #512

Translations 🌍

New Contributors

Full Changelog: v1.8.5...v1.8.8