Skip to content

Commit

Permalink
fix: card and text
Browse files Browse the repository at this point in the history
  • Loading branch information
byeoon committed Oct 17, 2024
1 parent aa639e3 commit 0c7bd3c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion src/ui/settings/components/Card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,15 @@ const styles = stylesheet.createThemedStyleSheet({
},
header: {
padding: 0,
backgroundColor: semanticColors.PRIMARY_DARK,
backgroundColor: semanticColors.HEADER_PRIMARY,
color: semanticColors.HEADER_PRIMARY,
borderTopLeftRadius: 5,
borderTopRightRadius: 5,
},
authors: {
color: semanticColors.HEADER_SECONDARY,
fontSize: 14,
},
actions: {
flexDirection: "row-reverse",
alignItems: "center",
Expand Down
2 changes: 1 addition & 1 deletion src/ui/settings/components/PluginCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export default function PluginCard({ item: plugin, index }: CardWrapper<Plugin>)
showToast((e as Error).message, getAssetIDByName("Small"));
}
}}
descriptionLabel={`plugin.manifest.description \n\nAuthors: ${authors.map(i => i.name).join(", ")}`}
descriptionLabel={`${plugin.manifest.description} \n\nAuthors: ${authors.map(i => i.name).join(", ")}`}
overflowTitle={plugin.manifest.name}
overflowActions={[
{
Expand Down

0 comments on commit 0c7bd3c

Please sign in to comment.