From ab5eb5c34cc83df56dbb72dc0df119b716058a8e Mon Sep 17 00:00:00 2001 From: jeffvli Date: Wed, 19 Nov 2025 02:29:08 -0800 Subject: [PATCH] updating rating button styles to more closely resemble icons --- src/shared/components/rating/rating.module.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/shared/components/rating/rating.module.css b/src/shared/components/rating/rating.module.css index 8cd55d5f2..c4f03c50c 100644 --- a/src/shared/components/rating/rating.module.css +++ b/src/shared/components/rating/rating.module.css @@ -1,5 +1,10 @@ .symbol-body { svg { - stroke: var(--theme-colors-foreground-muted); + stroke: alpha(var(--theme-colors-foreground), 0.7); + stroke-width: 2px; + + &:not([data-filled='true']) { + fill: transparent; + } } }