impaktapps-ui-builder 0.0.101-alpha.252 → 0.0.101-alpha.253

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.
@@ -82,6 +82,8 @@ export default function Card(theme: any): {
82
82
  height: string;
83
83
  background: string;
84
84
  borderRadius: string;
85
+ marginLeft: string;
86
+ marginTop: string;
85
87
  justifyContent: string;
86
88
  position: string;
87
89
  };
@@ -106,7 +108,7 @@ export default function Card(theme: any): {
106
108
  background: string;
107
109
  justifyContent: string;
108
110
  width: string;
109
- padding: number;
111
+ margin: string;
110
112
  height: number;
111
113
  position?: undefined;
112
114
  left?: undefined;
@@ -133,9 +135,9 @@ export default function Card(theme: any): {
133
135
  background: string;
134
136
  justifyContent: string;
135
137
  width: string;
138
+ margin: string;
136
139
  position: string;
137
140
  left: string;
138
- padding?: undefined;
139
141
  height?: undefined;
140
142
  };
141
143
  };
@@ -161,6 +163,7 @@ export default function Card(theme: any): {
161
163
  textWrap: string;
162
164
  background: string;
163
165
  width: string;
166
+ margin: string;
164
167
  marginTop: {
165
168
  xs: string;
166
169
  md: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impaktapps-ui-builder",
3
- "version": "0.0.101-alpha.252",
3
+ "version": "0.0.101-alpha.253",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -78,8 +78,8 @@ export default function Card(theme){
78
78
  height: "0",
79
79
  background: "transparent",
80
80
  borderRadius: "0px",
81
- // marginLeft: "-10px",
82
- // marginTop: "-8px",
81
+ marginLeft: "-10px",
82
+ marginTop: "-8px",
83
83
  justifyContent: "start",
84
84
  position: "relative"
85
85
  },
@@ -101,8 +101,7 @@ export default function Card(theme){
101
101
  background: "inherit",
102
102
  justifyContent: "flex-start",
103
103
  width: "auto",
104
- padding: 0,
105
- // margin: "-8px",
104
+ margin: "-8px",
106
105
  height: 0
107
106
  },
108
107
  // layout: 1,
@@ -126,9 +125,9 @@ export default function Card(theme){
126
125
  background: "inherit",
127
126
  justifyContent: "flex-start",
128
127
  width: "auto",
129
- // margin: "-8px",
128
+ margin: "-8px",
130
129
  position: "absolute",
131
- left: "0px"
130
+ left: "8px"
132
131
  },
133
132
  // layout: 11,
134
133
  },
@@ -151,8 +150,8 @@ export default function Card(theme){
151
150
  justifyContent: "center",
152
151
  textWrap: "wrap",
153
152
  background: "inherit",
154
- width: "100%",
155
- // margin: "-8px",
153
+ width: "calc(100%+8px)",
154
+ margin: "-8px",
156
155
  marginTop: {xs: "0px", md: "12px"},
157
156
  lineHeight: "1",
158
157
  },