easydiffusion/ui/frontend/build_src/src/components/molecules/drawImage/drawImage.css.ts
2022-09-16 18:32:48 -04:00

21 lines
371 B
TypeScript

import { style, globalStyle } from "@vanilla-extract/css";
export const DrawImageMain = style({
position: "relative",
width: "512px",
height: "512px",
});
globalStyle(`${DrawImageMain} > canvas`, {
position: "absolute",
top: "0",
left: "0",
opacity: "0.5",
});
globalStyle(`${DrawImageMain} > img`, {
position: "absolute",
top: "0",
left: "0",
});