Skip to content

Commit

Permalink
feat: description style for plugins, fix border
Browse files Browse the repository at this point in the history
  • Loading branch information
byeoon committed Oct 24, 2024
1 parent 474f02c commit d430478
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/ui/settings/components/Card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ const { showSimpleActionSheet } = findByProps("showSimpleActionSheet");
const styles = stylesheet.createThemedStyleSheet({
card: {
backgroundColor: semanticColors.BACKGROUND_SECONDARY,
borderRadius: 7,
borderRadius: 12,
borderColor: semanticColors.BACKGROUND_TERTIARY,
borderWidth: 1,
borderWidth: 2,
},
header: {
padding: 0,
Expand All @@ -23,6 +23,9 @@ const styles = stylesheet.createThemedStyleSheet({
borderTopLeftRadius: 5,
borderTopRightRadius: 5,
},
description: {
fontSize: 11,
},
actions: {
flexDirection: "row-reverse",
alignItems: "center",
Expand Down Expand Up @@ -95,6 +98,7 @@ export default function Card(props: CardProps) {

/>
<TableRow
style={styles.description}
label={props.descriptionLabel}
trailing={
<RN.View style={styles.actions}>
Expand Down

0 comments on commit d430478

Please sign in to comment.