swap flex-start/end (#4815)
Co-authored-by: Samuel Newman <10959775+mozzius@users.noreply.github.com>zio/stable
parent
3755807b5e
commit
67ce18a113
|
@ -400,11 +400,11 @@ export function Switch() {
|
||||||
selected
|
selected
|
||||||
? {
|
? {
|
||||||
backgroundColor: t.palette.primary_500,
|
backgroundColor: t.palette.primary_500,
|
||||||
alignSelf: 'flex-start',
|
alignSelf: 'flex-end',
|
||||||
}
|
}
|
||||||
: {
|
: {
|
||||||
backgroundColor: t.palette.contrast_400,
|
backgroundColor: t.palette.contrast_400,
|
||||||
alignSelf: 'flex-end',
|
alignSelf: 'flex-start',
|
||||||
},
|
},
|
||||||
indicatorStyles,
|
indicatorStyles,
|
||||||
]}
|
]}
|
||||||
|
|
Loading…
Reference in New Issue