Skip to content

Commit

Permalink
Add margin back to the comment divider (#644)
Browse files Browse the repository at this point in the history
  • Loading branch information
gkasdorf authored Jul 13, 2023
1 parent c75841b commit c292d6a
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/components/common/Comments/CommentItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import {
Pressable,
Text,
useTheme,
View,
VStack,
} from "native-base";
import React from "react";
Expand Down Expand Up @@ -190,7 +191,14 @@ function CommentItem({
</VStack>
</Pressable>
</SwipeableRow>
<Divider bg={theme.colors.app.border} />
<View
style={{
paddingLeft: depth * 12,
}}
backgroundColor={theme.colors.app.fg}
>
<Divider bg={theme.colors.app.border} />
</View>
</>
);
}
Expand Down

0 comments on commit c292d6a

Please sign in to comment.