From fa4c8da49537c92bf159c15b6d26fcf16f65a83c Mon Sep 17 00:00:00 2001 From: Ayo Date: Sat, 9 May 2026 07:12:20 +0200 Subject: [PATCH] feat: circle size is now 0.5rem --- src/status-indicator.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/status-indicator.ts b/src/status-indicator.ts index c785828..e84c7ef 100644 --- a/src/status-indicator.ts +++ b/src/status-indicator.ts @@ -35,8 +35,8 @@ class StatusIndicator extends WebComponent { display: 'inline-block', borderRadius: '50%', cursor: 'pointer', - width: '10px', - height: '10px', + width: '0.5rem', + height: '0.5rem', backgroundColor: `rgb(${statusColor})`, marginRight: '0.05rem', ...(this.props.pulse ? this.#pulseAnimationCSSRules : []) @@ -62,4 +62,4 @@ class StatusIndicator extends WebComponent { customElements.define('status-indicator', StatusIndicator) -export default StatusIndicator \ No newline at end of file +export default StatusIndicator