Skip to content

Commit

Permalink
bug: style order
Browse files Browse the repository at this point in the history
  • Loading branch information
miyasan31 committed Apr 20, 2024
1 parent 72ab571 commit dfe5f91
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/ui/elements/HStack.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ const HStackComponent = (props: HStackProps, ref: ForwardedRef<NativeView>) => {
<Box
ref={ref}
style={[
style,
defaultStyle.view,
{
columnGap: gap,
alignItems: align,
justifyContent: justify,
},
style,
]}
{...otherProps}
/>
Expand Down
2 changes: 1 addition & 1 deletion src/ui/elements/VStack.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ const VStackComponent = (props: VStackProps, ref: ForwardedRef<NativeView>) => {
<Box
ref={ref}
style={[
style,
defaultStyle.view,
{
rowGap: gap,
alignItems: align,
justifyContent: justify,
},
style,
]}
{...otherProps}
/>
Expand Down
2 changes: 1 addition & 1 deletion src/ui/primitives/SafeAreaView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const SafeAreaViewComponent = (props: SafeAreaViewProps) => {

return (
<NativeSafeAreaView
style={[defaultStyle.view, centerStyle, style, { backgroundColor }]}
style={[defaultStyle.view, style, centerStyle, { backgroundColor }]}
{...otherProps}
/>
);
Expand Down

0 comments on commit dfe5f91

Please sign in to comment.