@docyrus/ui-pro-ai-assistant 0.6.3 → 0.6.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.
- package/dist/index.js +40 -13
- package/dist/index.js.map +1 -1
- package/dist/styles.css +6 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -441,6 +441,9 @@
|
|
|
441
441
|
.-left-6 {
|
|
442
442
|
left: calc(var(--spacing) * -6);
|
|
443
443
|
}
|
|
444
|
+
.-left-\[99999px\] {
|
|
445
|
+
left: calc(99999px * -1);
|
|
446
|
+
}
|
|
444
447
|
.left-0 {
|
|
445
448
|
left: calc(var(--spacing) * 0);
|
|
446
449
|
}
|
|
@@ -1010,6 +1013,9 @@
|
|
|
1010
1013
|
.h-\(--radix-navigation-menu-viewport-height\) {
|
|
1011
1014
|
height: var(--radix-navigation-menu-viewport-height);
|
|
1012
1015
|
}
|
|
1016
|
+
.h-0 {
|
|
1017
|
+
height: calc(var(--spacing) * 0);
|
|
1018
|
+
}
|
|
1013
1019
|
.h-0\.5 {
|
|
1014
1020
|
height: calc(var(--spacing) * 0.5);
|
|
1015
1021
|
}
|
package/package.json
CHANGED