@object-ui/components 4.7.0 → 4.8.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.
package/CHANGELOG.md
CHANGED
package/dist/index.css
CHANGED
|
@@ -687,6 +687,9 @@
|
|
|
687
687
|
.h-\(--cell-size\) {
|
|
688
688
|
height: var(--cell-size);
|
|
689
689
|
}
|
|
690
|
+
.h-0\.5 {
|
|
691
|
+
height: calc(var(--spacing) * 0.5);
|
|
692
|
+
}
|
|
690
693
|
.h-1 {
|
|
691
694
|
height: calc(var(--spacing) * 1);
|
|
692
695
|
}
|
|
@@ -906,6 +909,9 @@
|
|
|
906
909
|
.w-1\/2 {
|
|
907
910
|
width: calc(1 / 2 * 100%);
|
|
908
911
|
}
|
|
912
|
+
.w-1\/4 {
|
|
913
|
+
width: calc(1 / 4 * 100%);
|
|
914
|
+
}
|
|
909
915
|
.w-2 {
|
|
910
916
|
width: calc(var(--spacing) * 2);
|
|
911
917
|
}
|
|
@@ -1857,6 +1863,12 @@
|
|
|
1857
1863
|
background-color: color-mix(in oklab, var(--color-primary) 50%, transparent);
|
|
1858
1864
|
}
|
|
1859
1865
|
}
|
|
1866
|
+
.bg-primary\/70 {
|
|
1867
|
+
background-color: color-mix(in srgb, hsl(var(--primary)) 70%, transparent);
|
|
1868
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1869
|
+
background-color: color-mix(in oklab, var(--color-primary) 70%, transparent);
|
|
1870
|
+
}
|
|
1871
|
+
}
|
|
1860
1872
|
.bg-purple-50\/50 {
|
|
1861
1873
|
background-color: color-mix(in srgb, oklch(97.7% 0.014 308.299) 50%, transparent);
|
|
1862
1874
|
@supports (color: color-mix(in lab, red, red)) {
|