Hotfix: was using a variable in generated css classes which isn't possible
This commit is contained in:
parent
cb4787ea42
commit
80f78d9940
|
@ -148,7 +148,8 @@ export default function ThumbnailPreview(props: Props): JSX.Element {
|
||||||
</div>
|
</div>
|
||||||
) : (
|
) : (
|
||||||
<div
|
<div
|
||||||
className={`w-full aspect-[${thumbnailAspectRatio}] bg-light ${
|
style={{ aspectRatio: thumbnailAspectRatio }}
|
||||||
|
className={`w-full bg-light ${
|
||||||
keepInfoVisible
|
keepInfoVisible
|
||||||
? "rounded-t-md"
|
? "rounded-t-md"
|
||||||
: "rounded-md coarse:rounded-b-none"
|
: "rounded-md coarse:rounded-b-none"
|
||||||
|
|
Loading…
Reference in New Issue