|
|
@@ -166,7 +166,7 @@ export function AddExternalLinkModal({ link, onClose }: AddExternalLinkModalProp
|
|
|
<div className="flex items-center gap-3">
|
|
|
<div className="p-2 rounded-full bg-bambu-green/20 text-bambu-green">
|
|
|
{useCustomIcon && customIconPreview ? (
|
|
|
- <img src={customIconPreview} alt="" className={`w-5 h-5 rounded ${theme === 'dark' ? 'invert brightness-200' : ''}`} />
|
|
|
+ <img src={customIconPreview} alt="" className={`w-5 h-5 rounded ${theme === 'dark' ? 'invert opacity-[0.65]' : 'opacity-60'}`} />
|
|
|
) : (
|
|
|
<PresetIcon className="w-5 h-5" />
|
|
|
)}
|
|
|
@@ -233,7 +233,7 @@ export function AddExternalLinkModal({ link, onClose }: AddExternalLinkModalProp
|
|
|
/>
|
|
|
{useCustomIcon && customIconPreview ? (
|
|
|
<div className="flex items-center gap-2">
|
|
|
- <img src={customIconPreview} alt="Custom icon" className={`w-8 h-8 rounded border border-bambu-dark-tertiary ${theme === 'dark' ? 'invert brightness-200' : ''}`} />
|
|
|
+ <img src={customIconPreview} alt="Custom icon" className={`w-8 h-8 rounded border border-bambu-dark-tertiary ${theme === 'dark' ? 'invert opacity-[0.65]' : 'opacity-60'}`} />
|
|
|
<button
|
|
|
type="button"
|
|
|
onClick={handleRemoveCustomIcon}
|