From a450e4288cdac6f61a13790f8820d57a7fb141a7 Mon Sep 17 00:00:00 2001 From: Elizabeth Mitchell Date: Mon, 23 Oct 2023 13:36:55 -0700 Subject: [PATCH] fix(progress): allow linear progress to fill flex containers Originally was min-block-size and got changed to width instead of min-width. Fixes #5042 PiperOrigin-RevId: 575915111 --- progress/internal/_linear-progress.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/progress/internal/_linear-progress.scss b/progress/internal/_linear-progress.scss index a39befe1f..611a98cbd 100644 --- a/progress/internal/_linear-progress.scss +++ b/progress/internal/_linear-progress.scss @@ -43,7 +43,7 @@ $_indeterminate-duration: 2s; position: relative; // note, this matches the `meter` element and is just done so // there's a default width. - width: 80px; + min-width: 80px; height: var(--_track-height); content-visibility: auto; contain: strict;