mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-28 11:46:42 +00:00
20200623.1 (#6216)
This commit is contained in:
parent
5268afabdb
commit
7534ecd2f2
2
setup.py
2
setup.py
@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="home-assistant-frontend",
|
name="home-assistant-frontend",
|
||||||
version="20200623.0",
|
version="20200623.1",
|
||||||
description="The Home Assistant frontend",
|
description="The Home Assistant frontend",
|
||||||
url="https://github.com/home-assistant/home-assistant-polymer",
|
url="https://github.com/home-assistant/home-assistant-polymer",
|
||||||
author="The Home Assistant Authors",
|
author="The Home Assistant Authors",
|
||||||
|
@ -7,6 +7,7 @@ import {
|
|||||||
customElement,
|
customElement,
|
||||||
unsafeCSS,
|
unsafeCSS,
|
||||||
SVGTemplateResult,
|
SVGTemplateResult,
|
||||||
|
css,
|
||||||
} from "lit-element";
|
} from "lit-element";
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
import progressStyles from "@material/circular-progress/dist/mdc.circular-progress.min.css";
|
import progressStyles from "@material/circular-progress/dist/mdc.circular-progress.min.css";
|
||||||
@ -74,7 +75,14 @@ export class HaCircularProgress extends LitElement {
|
|||||||
}
|
}
|
||||||
|
|
||||||
static get styles() {
|
static get styles() {
|
||||||
return unsafeCSS(progressStyles);
|
return [
|
||||||
|
unsafeCSS(progressStyles),
|
||||||
|
css`
|
||||||
|
:host {
|
||||||
|
text-align: initial;
|
||||||
|
}
|
||||||
|
`,
|
||||||
|
];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user