@geomak/ui 5.0.0 → 5.0.2
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.cjs +128 -83
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +15 -3
- package/dist/index.d.ts +15 -3
- package/dist/index.js +129 -83
- package/dist/index.js.map +1 -1
- package/dist/styles.css +29 -5
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -855,6 +855,9 @@ video {
|
|
|
855
855
|
.z-topbar {
|
|
856
856
|
z-index: var(--z-topbar);
|
|
857
857
|
}
|
|
858
|
+
.m-0 {
|
|
859
|
+
margin: 0px;
|
|
860
|
+
}
|
|
858
861
|
.m-1 {
|
|
859
862
|
margin: 0.25rem;
|
|
860
863
|
}
|
|
@@ -889,9 +892,6 @@ video {
|
|
|
889
892
|
.ml-auto {
|
|
890
893
|
margin-left: auto;
|
|
891
894
|
}
|
|
892
|
-
.mr-12 {
|
|
893
|
-
margin-right: 3rem;
|
|
894
|
-
}
|
|
895
895
|
.mr-2 {
|
|
896
896
|
margin-right: 0.5rem;
|
|
897
897
|
}
|
|
@@ -985,6 +985,9 @@ video {
|
|
|
985
985
|
.h-6 {
|
|
986
986
|
height: 1.5rem;
|
|
987
987
|
}
|
|
988
|
+
.h-60 {
|
|
989
|
+
height: 15rem;
|
|
990
|
+
}
|
|
988
991
|
.h-7 {
|
|
989
992
|
height: 1.75rem;
|
|
990
993
|
}
|
|
@@ -1109,6 +1112,9 @@ video {
|
|
|
1109
1112
|
.w-7 {
|
|
1110
1113
|
width: 1.75rem;
|
|
1111
1114
|
}
|
|
1115
|
+
.w-72 {
|
|
1116
|
+
width: 18rem;
|
|
1117
|
+
}
|
|
1112
1118
|
.w-8 {
|
|
1113
1119
|
width: 2rem;
|
|
1114
1120
|
}
|
|
@@ -1127,8 +1133,8 @@ video {
|
|
|
1127
1133
|
.w-\[300px\] {
|
|
1128
1134
|
width: 300px;
|
|
1129
1135
|
}
|
|
1130
|
-
.w-\[
|
|
1131
|
-
width:
|
|
1136
|
+
.w-\[316px\] {
|
|
1137
|
+
width: 316px;
|
|
1132
1138
|
}
|
|
1133
1139
|
.w-\[3px\] {
|
|
1134
1140
|
width: 3px;
|
|
@@ -1267,6 +1273,9 @@ video {
|
|
|
1267
1273
|
.snap-always {
|
|
1268
1274
|
scroll-snap-stop: always;
|
|
1269
1275
|
}
|
|
1276
|
+
.list-none {
|
|
1277
|
+
list-style-type: none;
|
|
1278
|
+
}
|
|
1270
1279
|
.grid-cols-3 {
|
|
1271
1280
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
1272
1281
|
}
|
|
@@ -1481,12 +1490,27 @@ video {
|
|
|
1481
1490
|
.border-transparent {
|
|
1482
1491
|
border-color: rgba(255, 255, 255, .0);
|
|
1483
1492
|
}
|
|
1493
|
+
.border-b-current {
|
|
1494
|
+
border-bottom-color: currentColor;
|
|
1495
|
+
}
|
|
1496
|
+
.border-l-current {
|
|
1497
|
+
border-left-color: currentColor;
|
|
1498
|
+
}
|
|
1499
|
+
.border-r-current {
|
|
1500
|
+
border-right-color: currentColor;
|
|
1501
|
+
}
|
|
1502
|
+
.border-t-current {
|
|
1503
|
+
border-top-color: currentColor;
|
|
1504
|
+
}
|
|
1484
1505
|
.bg-accent {
|
|
1485
1506
|
background-color: var(--color-accent);
|
|
1486
1507
|
}
|
|
1487
1508
|
.bg-background {
|
|
1488
1509
|
background-color: var(--color-background);
|
|
1489
1510
|
}
|
|
1511
|
+
.bg-current {
|
|
1512
|
+
background-color: currentColor;
|
|
1513
|
+
}
|
|
1490
1514
|
.bg-foreground {
|
|
1491
1515
|
background-color: var(--color-foreground);
|
|
1492
1516
|
}
|