Skip to content

Commit

Permalink
accidentlly made wide plugin list
Browse files Browse the repository at this point in the history
  • Loading branch information
byeoon committed Oct 24, 2024
1 parent d430478 commit be3843d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 10 deletions.
1 change: 1 addition & 0 deletions src/def.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ interface PluginManifest {
vendetta?: {
icon?: string;
internal?: boolean;
version?: string;
};
}

Expand Down
16 changes: 6 additions & 10 deletions src/ui/settings/components/Card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ const styles = stylesheet.createThemedStyleSheet({
backgroundColor: semanticColors.BACKGROUND_SECONDARY,
borderRadius: 12,
borderColor: semanticColors.BACKGROUND_TERTIARY,
borderWidth: 2,
borderWidth: 1,
},
header: {
padding: 0,
backgroundColor: semanticColors?.INTERACTIVE_MUTED,
color: semanticColors?.INTERACTIVE_MUTED,
borderTopLeftRadius: 5,
borderTopRightRadius: 5,
borderTopLeftRadius: 6,
borderTopRightRadius: 6,
},
description: {
fontSize: 11,
Expand All @@ -31,15 +31,11 @@ const styles = stylesheet.createThemedStyleSheet({
alignItems: "center",
},
icon: {
width: 22,
height: 22,
width: 24,
height: 24,
marginLeft: 5,
tintColor: semanticColors?.INTERACTIVE_NORMAL,
},
authors: {
color: semanticColors.HEADER_SECONDARY,
fontSize: 14,
},
}
})

interface Action {
Expand Down

0 comments on commit be3843d

Please sign in to comment.