diff options
author | Samuel Newman <mozzius@protonmail.com> | 2024-07-23 23:03:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-23 23:03:20 +0100 |
commit | 67ce18a113c8598521b60cede4e0e2fc05dd5da7 (patch) | |
tree | 24ccc7cebc18ce4bd7d54f369b8749e5f802dd69 /src/components/forms | |
parent | 3755807b5efd4b6f228a0c03d5339c06ba0824a3 (diff) | |
download | voidsky-67ce18a113c8598521b60cede4e0e2fc05dd5da7.tar.zst |
swap flex-start/end (#4815)
Co-authored-by: Samuel Newman <10959775+mozzius@users.noreply.github.com>
Diffstat (limited to 'src/components/forms')
-rw-r--r-- | src/components/forms/Toggle.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/forms/Toggle.tsx b/src/components/forms/Toggle.tsx index 502ed535a..cbdbf1c60 100644 --- a/src/components/forms/Toggle.tsx +++ b/src/components/forms/Toggle.tsx @@ -400,11 +400,11 @@ export function Switch() { selected ? { backgroundColor: t.palette.primary_500, - alignSelf: 'flex-start', + alignSelf: 'flex-end', } : { backgroundColor: t.palette.contrast_400, - alignSelf: 'flex-end', + alignSelf: 'flex-start', }, indicatorStyles, ]} |