@geomak/ui 5.0.0 → 5.0.1
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 +25 -22
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +25 -22
- package/dist/index.js.map +1 -1
- package/dist/styles.css +21 -3
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -889,9 +889,6 @@ video {
|
|
|
889
889
|
.ml-auto {
|
|
890
890
|
margin-left: auto;
|
|
891
891
|
}
|
|
892
|
-
.mr-12 {
|
|
893
|
-
margin-right: 3rem;
|
|
894
|
-
}
|
|
895
892
|
.mr-2 {
|
|
896
893
|
margin-right: 0.5rem;
|
|
897
894
|
}
|
|
@@ -985,6 +982,9 @@ video {
|
|
|
985
982
|
.h-6 {
|
|
986
983
|
height: 1.5rem;
|
|
987
984
|
}
|
|
985
|
+
.h-60 {
|
|
986
|
+
height: 15rem;
|
|
987
|
+
}
|
|
988
988
|
.h-7 {
|
|
989
989
|
height: 1.75rem;
|
|
990
990
|
}
|
|
@@ -1109,6 +1109,9 @@ video {
|
|
|
1109
1109
|
.w-7 {
|
|
1110
1110
|
width: 1.75rem;
|
|
1111
1111
|
}
|
|
1112
|
+
.w-72 {
|
|
1113
|
+
width: 18rem;
|
|
1114
|
+
}
|
|
1112
1115
|
.w-8 {
|
|
1113
1116
|
width: 2rem;
|
|
1114
1117
|
}
|
|
@@ -1481,12 +1484,27 @@ video {
|
|
|
1481
1484
|
.border-transparent {
|
|
1482
1485
|
border-color: rgba(255, 255, 255, .0);
|
|
1483
1486
|
}
|
|
1487
|
+
.border-b-current {
|
|
1488
|
+
border-bottom-color: currentColor;
|
|
1489
|
+
}
|
|
1490
|
+
.border-l-current {
|
|
1491
|
+
border-left-color: currentColor;
|
|
1492
|
+
}
|
|
1493
|
+
.border-r-current {
|
|
1494
|
+
border-right-color: currentColor;
|
|
1495
|
+
}
|
|
1496
|
+
.border-t-current {
|
|
1497
|
+
border-top-color: currentColor;
|
|
1498
|
+
}
|
|
1484
1499
|
.bg-accent {
|
|
1485
1500
|
background-color: var(--color-accent);
|
|
1486
1501
|
}
|
|
1487
1502
|
.bg-background {
|
|
1488
1503
|
background-color: var(--color-background);
|
|
1489
1504
|
}
|
|
1505
|
+
.bg-current {
|
|
1506
|
+
background-color: currentColor;
|
|
1507
|
+
}
|
|
1490
1508
|
.bg-foreground {
|
|
1491
1509
|
background-color: var(--color-foreground);
|
|
1492
1510
|
}
|