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

10 lines
191 B
JavaScript

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