impaktapps-ui-builder 0.0.101-alpha.223 → 0.0.101-alpha.224

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -79,6 +79,8 @@ export default function Card(theme: any): {
79
79
  height: string;
80
80
  background: string;
81
81
  borderRadius: string;
82
+ marginLeft: string;
83
+ marginTop: string;
82
84
  justifyContent: string;
83
85
  position: string;
84
86
  };
@@ -130,9 +132,9 @@ export default function Card(theme: any): {
130
132
  background: string;
131
133
  justifyContent: string;
132
134
  width: string;
135
+ margin: string;
133
136
  position: string;
134
137
  left: string;
135
- margin?: undefined;
136
138
  height?: undefined;
137
139
  };
138
140
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impaktapps-ui-builder",
3
- "version": "0.0.101-alpha.223",
3
+ "version": "0.0.101-alpha.224",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -75,8 +75,8 @@ export default function Card(theme){
75
75
  height: "0",
76
76
  background: "transparent",
77
77
  borderRadius: "0px",
78
- // marginLeft: "-10px",
79
- // marginTop: "-8px",
78
+ marginLeft: "-10px",
79
+ marginTop: "-8px",
80
80
  justifyContent: "start",
81
81
  position: "relative"
82
82
  },
@@ -122,7 +122,7 @@ export default function Card(theme){
122
122
  background: "inherit",
123
123
  justifyContent: "flex-start",
124
124
  width: "auto",
125
- // margin: "-8px",
125
+ margin: "-8px",
126
126
  position: "absolute",
127
127
  left: "8px"
128
128
  },