swap flex-start/end (#4815)

Co-authored-by: Samuel Newman <10959775+mozzius@users.noreply.github.com>
zio/stable
Samuel Newman 2024-07-23 23:03:20 +01:00 committed by GitHub
parent 3755807b5e
commit 67ce18a113
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -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,
]}