polymech-astro/packages/imagetools_3/api/utils/getLayoutStyles.js
2025-08-26 12:17:29 +02:00

17 lines
368 B
JavaScript

// @ts-check
export default function getLayoutStyles({
layout = null,
isBackgroundImage = false,
}) {
return isBackgroundImage
? "width: 100%; height: 100%;"
: layout === "fill"
? `width: 100%; height: 100%;`
: layout === "fullWidth"
? `width: 100%; height: auto;`
: layout === "fixed"
? ""
: "max-width: 100%; height: auto;";
}