From 722e01608cbe2b1836dbc6028d49adcbf19fec48 Mon Sep 17 00:00:00 2001 From: Paul Klingelhuber Date: Tue, 6 Oct 2020 09:47:25 +0200 Subject: [PATCH] Fix flickering scrollbar when using progress-spinner (#7237) --- src/components/ha-circular-progress.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/components/ha-circular-progress.ts b/src/components/ha-circular-progress.ts index d28837872e..ec4115bae4 100644 --- a/src/components/ha-circular-progress.ts +++ b/src/components/ha-circular-progress.ts @@ -81,6 +81,9 @@ export class HaCircularProgress extends LitElement { :host { text-align: initial; } + .mdc-circular-progress { + overflow: hidden; + } `, ]; }