From 13b6a46617f302ac71865eb031fd8c15dc181a16 Mon Sep 17 00:00:00 2001 From: Brendan F Date: Sun, 14 May 2023 23:17:50 -0700 Subject: Fix disappearing separators Change width from 0.8px because, depending on window size, the sub-pixel width could get rounded out and not displayed at all --- src/components/Player/index.styled.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/components/Player/index.styled.ts b/src/components/Player/index.styled.ts index 4200fe1..9e775cf 100644 --- a/src/components/Player/index.styled.ts +++ b/src/components/Player/index.styled.ts @@ -29,7 +29,7 @@ export const Separator = styled.div` position: absolute; top: 0; - width: 0.8px; + width: 1px; height: 100%; background-color: ${({ theme }) => theme.border100}; -- cgit v1.2.3