@nubase/frontend 0.1.15 → 0.1.16
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 +13 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +13 -4
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +9 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -3085,6 +3085,15 @@
|
|
|
3085
3085
|
background: var(--color-primary, var(--primary));
|
|
3086
3086
|
border-radius: var(--radius-lg);
|
|
3087
3087
|
}
|
|
3088
|
+
.react-grid-item {
|
|
3089
|
+
transition: none;
|
|
3090
|
+
}
|
|
3091
|
+
.react-grid-item.react-draggable-dragging {
|
|
3092
|
+
transition: none;
|
|
3093
|
+
}
|
|
3094
|
+
.react-grid-item.resizing {
|
|
3095
|
+
transition: none;
|
|
3096
|
+
}
|
|
3088
3097
|
:root {
|
|
3089
3098
|
--radius: 0.625rem;
|
|
3090
3099
|
}
|