linkedunion-design-kit 1.5.8 → 1.6.0
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.
|
@@ -13,11 +13,11 @@ export var avatarSize = {
|
|
|
13
13
|
massive: "w-[200px] h-[200px]",
|
|
14
14
|
};
|
|
15
15
|
export var avatarPadding = {
|
|
16
|
-
sm: "p-2",
|
|
17
|
-
md: "p-2",
|
|
18
|
-
lg: "p-3",
|
|
19
|
-
xl: "p-4",
|
|
20
|
-
"2xl": "p-5",
|
|
16
|
+
sm: "!p-2",
|
|
17
|
+
md: "!p-2",
|
|
18
|
+
lg: "!p-3",
|
|
19
|
+
xl: "!p-4",
|
|
20
|
+
"2xl": "!p-5",
|
|
21
21
|
"3xl": "p-6",
|
|
22
22
|
"4xl": "p-8",
|
|
23
23
|
"5xl": "p-10",
|
package/dist/styles/global.css
CHANGED
|
@@ -1022,12 +1022,15 @@
|
|
|
1022
1022
|
.\!p-3 {
|
|
1023
1023
|
padding: calc(var(--spacing) * 3) !important;
|
|
1024
1024
|
}
|
|
1025
|
+
.\!p-4 {
|
|
1026
|
+
padding: calc(var(--spacing) * 4) !important;
|
|
1027
|
+
}
|
|
1028
|
+
.\!p-5 {
|
|
1029
|
+
padding: calc(var(--spacing) * 5) !important;
|
|
1030
|
+
}
|
|
1025
1031
|
.p-2 {
|
|
1026
1032
|
padding: calc(var(--spacing) * 2);
|
|
1027
1033
|
}
|
|
1028
|
-
.p-3 {
|
|
1029
|
-
padding: calc(var(--spacing) * 3);
|
|
1030
|
-
}
|
|
1031
1034
|
.p-4 {
|
|
1032
1035
|
padding: calc(var(--spacing) * 4);
|
|
1033
1036
|
}
|