nicer opacities and stuff to see what's active

This commit is contained in:
talksik
2022-05-25 08:32:57 -05:00
parent 248320dfbc
commit 7b4b36cdeb
3 changed files with 12 additions and 8 deletions
+6 -2
View File
@@ -18,7 +18,11 @@ function LineIcon({
return (
<>
{isMultiple ? (
<div className={`relative ${grayscale ? 'grayscale' : ''} h-[40px] w-[40px] flex-grow-0`}>
<div
className={`relative ${
grayscale ? 'grayscale opacity-40' : ''
} h-[40px] w-[40px] flex-grow-0`}
>
{sourceImages.map((avatarSrc, index) => {
if (index === 0) {
return (
@@ -53,7 +57,7 @@ function LineIcon({
src={avatarSrc}
shape="square"
size={'large'}
className={`${grayscale && 'grayscale'} shadow-lg`}
className={`${grayscale && 'grayscale opacity-40'} shadow-lg`}
/>
))
)}