From 7dd85eb55e298399b213a5308d840d13a63e16a8 Mon Sep 17 00:00:00 2001 From: William Grant Date: Fri, 14 Oct 2022 14:26:36 +1100 Subject: [PATCH] fix: pr review - fix spelling mistake in comments --- ts/components/basic/SessionRadio.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ts/components/basic/SessionRadio.tsx b/ts/components/basic/SessionRadio.tsx index a05abffc5..3bb1b66f4 100644 --- a/ts/components/basic/SessionRadio.tsx +++ b/ts/components/basic/SessionRadio.tsx @@ -45,7 +45,7 @@ const StyledLabel = styled.label<{ transition: var(--default-duration); padding: ${props => props.filledSize}px; border: none; - outline: 1px solid currentColor; /* CSS varibles didn't work here */ + outline: 1px solid currentColor; /* CSS variables don't work here */ outline-offset: ${props => props.outlineOffset}px; ${props => props.beforeMargins && `margin: ${props.beforeMargins};`}; } @@ -106,7 +106,7 @@ const StyledInputOutlineSelected = styled(StyledInput)` const StyledLabelOutlineSelected = styled(StyledLabel)<{ selectedColor: string }>` :before { background: ${props => (props.selectedColor ? props.selectedColor : 'var(--primary-color)')}; - outline: 1px solid transparent; /* CSS varibles didn't work here */ + outline: 1px solid transparent; /* CSS variables don't work here */ } `;