Skip to content

Commit

Permalink
#201 fix: 투두아이템 패딩 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
junseok44 committed Feb 14, 2024
1 parent fa1b886 commit f458d6e
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 9 deletions.
2 changes: 1 addition & 1 deletion ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -993,4 +993,4 @@ SPEC CHECKSUMS:

PODFILE CHECKSUM: 0a51e94313bf695c7f32c01577c9fa3224c1476b

COCOAPODS: 1.14.3
COCOAPODS: 1.14.2
12 changes: 10 additions & 2 deletions ios/TaskStock.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,11 @@
ONLY_ACTIVE_ARCH = YES;
OTHER_CFLAGS = "$(inherited)";
OTHER_CPLUSPLUSFLAGS = "$(inherited)";
OTHER_LDFLAGS = "$(inherited)";
OTHER_LDFLAGS = (
"$(inherited)",
"-Wl",
"-ld_classic",
);
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
SDKROOT = iphoneos;
};
Expand Down Expand Up @@ -544,7 +548,11 @@
MTL_ENABLE_DEBUG_INFO = NO;
OTHER_CFLAGS = "$(inherited)";
OTHER_CPLUSPLUSFLAGS = "$(inherited)";
OTHER_LDFLAGS = "$(inherited)";
OTHER_LDFLAGS = (
"$(inherited)",
"-Wl",
"-ld_classic",
);
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
SDKROOT = iphoneos;
VALIDATE_PRODUCT = YES;
Expand Down
2 changes: 1 addition & 1 deletion src/components/molecules/DrawerParts.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export function DrawerContent({ children }: { children: React.ReactNode }) {
return (
<View
style={{
// paddingHorizontal: spacing.gutter,
paddingHorizontal: spacing.gutter,
paddingTop: useResponsiveFontSize(15),
}}
>
Expand Down
1 change: 1 addition & 0 deletions src/components/molecules/Home/TodoContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ const TodoContainer = () => {
<View
style={{
flex: 1,
paddingHorizontal: spacing.gutter,
}}
>
<DraggableTodoList selectedProjectId={selectedProjectId} />
Expand Down
6 changes: 1 addition & 5 deletions src/components/molecules/Home/TodoItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -267,11 +267,7 @@ const TodoItem = ({ todo }: { todo: Todo }) => {
};

return (
<View
ref={itemRef}
collapsable={false}
style={{ paddingHorizontal: spacing.gutter }}
>
<View ref={itemRef} collapsable={false} style={{}}>
<FlexBox
justifyContent="space-between"
alignItems="center"
Expand Down

0 comments on commit f458d6e

Please sign in to comment.