diff options
| author | Brendan F <EpicWolverine@users.noreply.github.com> | 2023-05-14 23:17:50 -0700 |
|---|---|---|
| committer | Brendan F <EpicWolverine@users.noreply.github.com> | 2023-05-14 23:17:50 -0700 |
| commit | 13b6a46617f302ac71865eb031fd8c15dc181a16 (patch) | |
| tree | 141964b8df4cb5f9151e33f297c96b7182daf815 /src/components | |
| parent | 737344a72d23dc97b0d0e73cc4ab7fdffd0fbf49 (diff) | |
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
Diffstat (limited to 'src/components')
| -rw-r--r-- | src/components/Player/index.styled.ts | 2 |
1 files changed, 1 insertions, 1 deletions
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}; |
