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

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,8 +79,6 @@ export default function Card(theme: any): {
79
79
  height: string;
80
80
  background: string;
81
81
  borderRadius: string;
82
- marginLeft: string;
83
- marginTop: string;
84
82
  justifyContent: string;
85
83
  position: string;
86
84
  };
@@ -132,9 +130,9 @@ export default function Card(theme: any): {
132
130
  background: string;
133
131
  justifyContent: string;
134
132
  width: string;
135
- margin: string;
136
133
  position: string;
137
134
  left: string;
135
+ margin?: undefined;
138
136
  height?: undefined;
139
137
  };
140
138
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impaktapps-ui-builder",
3
- "version": "0.0.101-alpha.221",
3
+ "version": "0.0.101-alpha.223",
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
  },