impaktapps-ui-builder 0.0.101-alpha.222 → 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
  };
@@ -158,6 +160,7 @@ export default function Card(theme: any): {
158
160
  textWrap: string;
159
161
  background: string;
160
162
  width: string;
163
+ margin: string;
161
164
  marginTop: {
162
165
  xs: string;
163
166
  md: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impaktapps-ui-builder",
3
- "version": "0.0.101-alpha.222",
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
  },
@@ -148,7 +148,7 @@ export default function Card(theme){
148
148
  textWrap: "wrap",
149
149
  background: "inherit",
150
150
  width: "calc(100%+8px)",
151
- // margin: "-8px",
151
+ margin: "-16px",
152
152
  marginTop: {xs: "0px", md: "12px"},
153
153
  lineHeight: "1",
154
154
  },