impaktapps-ui-builder 0.0.101-alpha.258 → 0.0.101-alpha.259

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.
@@ -166,7 +166,10 @@ export default function Card(theme: any): {
166
166
  background: string;
167
167
  width: string;
168
168
  margin: string;
169
- marginTop: string;
169
+ marginTop: {
170
+ xs: string;
171
+ md: string;
172
+ };
170
173
  };
171
174
  layout: number;
172
175
  wrapperStyle?: undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impaktapps-ui-builder",
3
- "version": "0.0.101-alpha.258",
3
+ "version": "0.0.101-alpha.259",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -153,7 +153,7 @@ export default function Card(theme){
153
153
  background: "inherit",
154
154
  width: "calc(100%+8px)",
155
155
  margin: "-8px",
156
- marginTop: "20px",
156
+ marginTop: {xs: "16px", md: "20px"},
157
157
  },
158
158
  layout: 12,
159
159
  },