summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--frontend/src/components/store/PluginCard.tsx15
1 files changed, 13 insertions, 2 deletions
diff --git a/frontend/src/components/store/PluginCard.tsx b/frontend/src/components/store/PluginCard.tsx
index a6e9458a..a30c3d6b 100644
--- a/frontend/src/components/store/PluginCard.tsx
+++ b/frontend/src/components/store/PluginCard.tsx
@@ -113,8 +113,19 @@ const PluginCard: FC<PluginCardProps> = ({ plugin }) => {
}}
className="deckyStoreCardInfo"
>
- <p className={joinClassNames(staticClasses.PanelSectionRow)}>
- <span>Author: {plugin.author}</span>
+ <p className={joinClassNames(staticClasses.PanelSectionRow)} style={{ marginTop: '0px', marginLeft: '16px'}}>
+ <span style={{ paddingLeft: '0px' }}>Author: {plugin.author}</span>
+ </p>
+ <p
+ className={joinClassNames(staticClasses.PanelSectionRow)}
+ style={{
+ marginLeft: '16px',
+ marginTop: '0px',
+ marginBottom: '0px',
+ marginRight: '16px'
+ }}
+ >
+ <span style={{ paddingLeft: '0px' }}>{plugin.description}</span>
</p>
<p
className={joinClassNames('deckyStoreCardTagsContainer', staticClasses.PanelSectionRow)}