From 7ba7761a576fbc49171120165cf4034c3eb06c21 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Tue, 23 Jun 2020 09:36:55 -0700 Subject: [PATCH 1/2] Reset text-align on circular-progress (#6215) --- src/components/ha-circular-progress.ts | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/components/ha-circular-progress.ts b/src/components/ha-circular-progress.ts index c15ce80fd4..e219f52e47 100644 --- a/src/components/ha-circular-progress.ts +++ b/src/components/ha-circular-progress.ts @@ -7,6 +7,7 @@ import { customElement, unsafeCSS, SVGTemplateResult, + css, } from "lit-element"; // @ts-ignore import progressStyles from "@material/circular-progress/dist/mdc.circular-progress.min.css"; @@ -74,7 +75,14 @@ export class HaCircularProgress extends LitElement { } static get styles() { - return unsafeCSS(progressStyles); + return [ + unsafeCSS(progressStyles), + css` + :host { + text-align: initial; + } + `, + ]; } } From 46bf5cf83064ef2e710a337ee15a63aa14688e0c Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Tue, 23 Jun 2020 09:37:15 -0700 Subject: [PATCH 2/2] Bumped version to 20200623.1 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index bdc1cc932a..17e217a328 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages setup( name="home-assistant-frontend", - version="20200623.0", + version="20200623.1", description="The Home Assistant frontend", url="https://github.com/home-assistant/home-assistant-polymer", author="The Home Assistant Authors",