@brizy/ui
Version:
React elements in Brizy style
12 lines (11 loc) • 323 B
JavaScript
import { BRZ_PREFIX } from "../constants";
export const getContentWidthProperty = (width) => {
return {
[`--${BRZ_PREFIX}-frame-content-width`]: width,
};
};
export const getContentScrollbarWidth = (width) => {
return {
[`--${BRZ_PREFIX}-frame-content-scrollbar-width`]: `${width}px`,
};
};