lev launch config. update some images

This commit is contained in:
Dobromir Popov
2024-02-23 21:28:56 +02:00
parent d8f08b9234
commit bce92fb6cc
13 changed files with 24 additions and 16 deletions

View File

@ -99,17 +99,17 @@ const FileUploadWithPreview = ({ name, value, prefix, onUpload, label }) => {
</button>
</>
)}
</div>
{
thumbnail && (
<div className="mt-2 flex justify-center">
<div className="max-w-xs max-h-64 overflow-hidden rounded-md">
<img src={thumbnail} alt="Thumbnail" className="object-contain w-full h-full" />
{
thumbnail && (
<div className="mt-2 flex justify-center">
<div className="max-w-xs max-h-64 overflow-hidden rounded-md">
<img src={thumbnail} alt="Thumbnail" className="object-contain w-full h-full" />
</div>
</div>
</div>
)
}
</div >
)
}
</div>
</div>
);
};