Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -270,8 +270,10 @@ const TableHeader: React.FC<TableHeaderProps> = ({
'&:hover': { bgcolor: colors.primaryDark },
textTransform: 'none',
fontWeight: '600',
padding: '8px 20px',
borderRadius: '8px',
// Match size with Status Filter button
padding: '8px 16px',
height: '45px',
borderRadius: '10px',
boxShadow: isDark
? '0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -2px rgba(0, 0, 0, 0.2)'
: '0 4px 6px -1px rgba(47, 134, 255, 0.2), 0 2px 4px -2px rgba(47, 134, 255, 0.1)',
Expand Down
6 changes: 3 additions & 3 deletions frontend/src/components/marketplace/FeaturedPlugins.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -300,9 +300,9 @@ const FeaturedHeroCard = React.memo(
</div>

<div className="flex w-full flex-wrap justify-center gap-2">
{plugin.tags
?.slice(0, 3)
.map(tag => <PluginTag key={tag} tag={tag} color={getTagColor(tag)} />)}
{plugin.tags?.slice(0, 3).map(tag => (
<PluginTag key={tag} tag={tag} color={getTagColor(tag)} />
))}
</div>

<div className="mt-2 flex flex-col items-center gap-2">
Expand Down
Loading