fixing sizing and stuff from messenger inspiration

This commit is contained in:
talksik
2022-05-16 15:52:03 -05:00
parent fc212b5d58
commit 256675b2de
4 changed files with 79 additions and 29 deletions
+2 -2
View File
@@ -18,7 +18,7 @@ function LineIcon({
return (
<>
{isMultiple ? (
<div className={`relative ${grayscale ? 'grayscale' : ''} h-[32px] w-[32px]`}>
<div className={`relative ${grayscale ? 'grayscale' : ''} h-[40px] w-[40px]`}>
{sourceImages.map((avatarSrc, index) => {
if (index === 0) {
return (
@@ -52,7 +52,7 @@ function LineIcon({
key={`lineIcon-${avatarSrc}-${index}`}
src={avatarSrc}
shape="square"
size={'default'}
size={'large'}
className={`${grayscale && 'grayscale'} shadow-lg`}
/>
))