123456789101112131415161718192021222324252627282930313233343536373839404142 |
- export const containerDefaultConfig = {
-
- style: {
- background: {
- type: "color",
- color: "rgba(0, 0, 0, 0.1)",
- image: "",
- fillType: "",
- },
- opacity: 100,
- borderStyle: "none",
- borderColor: "#EEEEEEFF",
- borderWidth: 1,
- borderRadius: {
- type: "all",
- value: 2,
- unit: "px",
- },
-
- boxShadow: '',
-
- backdropFilter: '',
-
- webkitBoxReflect: '',
- },
-
- props: {
- width: 0,
- height: 0,
- x: 0,
- y: 0,
- paddingLeft: 0,
- paddingRight: 0,
- paddingTop: 0,
- paddingBottom: 0,
- rotateX: 0,
- rotateY: 0,
- rotateZ: 0,
- opacity: 100,
- },
- };
|