Skip to content

Commit

Permalink
πŸ§‘β€πŸŽ¨ style: Remove Plugins Icon Background (#2368)
Browse files Browse the repository at this point in the history
  • Loading branch information
mawburn authored Apr 10, 2024
1 parent e4c07eb commit f64a2cb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion client/src/components/Plugins/Store/PluginStoreItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ function PluginStoreItem({ plugin, onInstall, onUninstall, isInstalled }: TPlugi
<img
src={plugin.icon}
alt={`${plugin.name} logo`}
className="h-full w-full rounded-[5px] bg-white"
className="h-full w-full rounded-[5px]"
/>
<div className="absolute inset-0 rounded-[5px] ring-1 ring-inset ring-black/10"></div>
</div>
Expand Down
8 changes: 2 additions & 6 deletions client/src/components/ui/MultiSelectPop.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,7 @@ function MultiSelectPop({
{value.map((v, i) => (
<div key={i} className="relative">
{v.icon ? (
<img
src={v.icon}
alt={`${v} logo`}
className="icon-lg rounded-sm bg-white"
/>
<img src={v.icon} alt={`${v} logo`} className="icon-lg rounded-sm" />
) : (
<Wrench className="icon-lg rounded-sm bg-white" />
)}
Expand Down Expand Up @@ -141,7 +137,7 @@ function MultiSelectPop({
<img
src={option.icon}
alt={`${option.name} logo`}
className="icon-sm mr-1 rounded-sm bg-white bg-cover dark:bg-gray-800"
className="icon-sm mr-1 rounded-sm bg-cover"
/>
) : (
<Wrench className="icon-sm mr-1 rounded-sm bg-white bg-cover dark:bg-gray-800" />
Expand Down

0 comments on commit f64a2cb

Please sign in to comment.