mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-17 17:00:15 +01:00
🧑🎨 style: Remove Plugins Icon Background (#2368)
This commit is contained in:
parent
e4c07eb895
commit
f64a2cb0b0
2 changed files with 3 additions and 7 deletions
|
|
@ -28,7 +28,7 @@ function PluginStoreItem({ plugin, onInstall, onUninstall, isInstalled }: TPlugi
|
||||||
<img
|
<img
|
||||||
src={plugin.icon}
|
src={plugin.icon}
|
||||||
alt={`${plugin.name} logo`}
|
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 className="absolute inset-0 rounded-[5px] ring-1 ring-inset ring-black/10"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -80,11 +80,7 @@ function MultiSelectPop({
|
||||||
{value.map((v, i) => (
|
{value.map((v, i) => (
|
||||||
<div key={i} className="relative">
|
<div key={i} className="relative">
|
||||||
{v.icon ? (
|
{v.icon ? (
|
||||||
<img
|
<img src={v.icon} alt={`${v} logo`} className="icon-lg rounded-sm" />
|
||||||
src={v.icon}
|
|
||||||
alt={`${v} logo`}
|
|
||||||
className="icon-lg rounded-sm bg-white"
|
|
||||||
/>
|
|
||||||
) : (
|
) : (
|
||||||
<Wrench className="icon-lg rounded-sm bg-white" />
|
<Wrench className="icon-lg rounded-sm bg-white" />
|
||||||
)}
|
)}
|
||||||
|
|
@ -141,7 +137,7 @@ function MultiSelectPop({
|
||||||
<img
|
<img
|
||||||
src={option.icon}
|
src={option.icon}
|
||||||
alt={`${option.name} logo`}
|
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" />
|
<Wrench className="icon-sm mr-1 rounded-sm bg-white bg-cover dark:bg-gray-800" />
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue