baaz-custom-components 3.2.11 → 3.2.13
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.css +13 -0
- package/dist/index.js +226 -125
- package/dist/index.mjs +211 -110
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -292,6 +292,9 @@
|
|
|
292
292
|
.top-\[50\%\] {
|
|
293
293
|
top: 50%;
|
|
294
294
|
}
|
|
295
|
+
.top-\[52px\] {
|
|
296
|
+
top: 52px;
|
|
297
|
+
}
|
|
295
298
|
.top-\[60\%\] {
|
|
296
299
|
top: 60%;
|
|
297
300
|
}
|
|
@@ -322,6 +325,9 @@
|
|
|
322
325
|
.left-2 {
|
|
323
326
|
left: calc(var(--spacing) * 2);
|
|
324
327
|
}
|
|
328
|
+
.left-10 {
|
|
329
|
+
left: calc(var(--spacing) * 10);
|
|
330
|
+
}
|
|
325
331
|
.left-\[50\%\] {
|
|
326
332
|
left: 50%;
|
|
327
333
|
}
|
|
@@ -1582,6 +1588,13 @@
|
|
|
1582
1588
|
}
|
|
1583
1589
|
}
|
|
1584
1590
|
}
|
|
1591
|
+
.hover\:bg-primary {
|
|
1592
|
+
&:hover {
|
|
1593
|
+
@media (hover: hover) {
|
|
1594
|
+
background-color: var(--primary);
|
|
1595
|
+
}
|
|
1596
|
+
}
|
|
1597
|
+
}
|
|
1585
1598
|
.hover\:bg-primary\/90 {
|
|
1586
1599
|
&:hover {
|
|
1587
1600
|
@media (hover: hover) {
|