swap flex-start/end (#4815)

Co-authored-by: Samuel Newman <10959775+mozzius@users.noreply.github.com>
This commit is contained in:
Samuel Newman
2024-07-23 23:03:20 +01:00
committed by GitHub
parent 3755807b5e
commit 67ce18a113
+2 -2
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,
]}