Skip to content
Merged
Changes from all 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
12 changes: 12 additions & 0 deletions src/components/ha-circular-progress.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { CircularProgress } from "@material/mwc-circular-progress";
import { CSSResultGroup, css } from "lit";
import { customElement, property } from "lit/decorators";

@customElement("ha-circular-progress")
Expand Down Expand Up @@ -41,6 +42,17 @@ export class HaCircularProgress extends CircularProgress {
public get indeterminate() {
return this.active;
}

static get styles(): CSSResultGroup {
return [
super.styles,
css`
:host {
overflow: hidden;
}
`,
];
}
}

declare global {
Expand Down