impaktapps-ui-builder 1.0.147-test.2 → 1.0.147-test.4

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.
@@ -15,7 +15,6 @@ export default function Card(theme: any): {
15
15
  flexWrap: string;
16
16
  width: string;
17
17
  background: string;
18
- border: string;
19
18
  borderRadius: string;
20
19
  padding: string;
21
20
  height: string;
@@ -24,10 +23,6 @@ export default function Card(theme: any): {
24
23
  marginLeft: string;
25
24
  "&: hover": {
26
25
  background: string;
27
- border: string;
28
- "& p": {
29
- color: string;
30
- };
31
26
  };
32
27
  };
33
28
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impaktapps-ui-builder",
3
- "version": "1.0.147-test.2",
3
+ "version": "1.0.147-test.4",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -17,7 +17,7 @@ export default function Card(theme){
17
17
  flexWrap: "nowrap",
18
18
  width: "100% !important",
19
19
  background: "transparent",
20
- border: `1.5px solid ${theme.palette.primary.light}`,
20
+ // border: `1.5px solid ${theme.palette.primary.light}`,
21
21
  borderRadius: "8px",
22
22
  padding: "20px 20px 20px 14px",
23
23
  height: "100%",
@@ -26,10 +26,10 @@ export default function Card(theme){
26
26
  marginLeft: "0px",
27
27
  "&: hover": {
28
28
  background: `${theme.palette.primary.main}`,
29
- border: `1.5px solid black`,
30
- "& p": {
31
- color: "white",
32
- },
29
+ // border: `1.5px solid black`,
30
+ // "& p": {
31
+ // color: "white",
32
+ // },
33
33
  },
34
34
  },
35
35
  },