@powerhousedao/common 1.10.2 → 1.10.4
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/editors/styles.css +49 -4
- package/dist/package.json +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +8 -8
package/dist/editors/styles.css
CHANGED
|
@@ -1083,8 +1083,7 @@
|
|
|
1083
1083
|
@layer theme, base, components, utilities;
|
|
1084
1084
|
@layer theme {
|
|
1085
1085
|
:root, :host {
|
|
1086
|
-
--font-sans:
|
|
1087
|
-
"Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
1086
|
+
--font-sans: "Inter", sans-serif;
|
|
1088
1087
|
--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
|
|
1089
1088
|
"Courier New", monospace;
|
|
1090
1089
|
--color-red-100: hsl(3 82% 96%);
|
|
@@ -1767,6 +1766,9 @@
|
|
|
1767
1766
|
.h-\[20px\] {
|
|
1768
1767
|
height: 20px;
|
|
1769
1768
|
}
|
|
1769
|
+
.h-\[22px\] {
|
|
1770
|
+
height: 22px;
|
|
1771
|
+
}
|
|
1770
1772
|
.h-\[28px\] {
|
|
1771
1773
|
height: 28px;
|
|
1772
1774
|
}
|
|
@@ -1917,6 +1919,9 @@
|
|
|
1917
1919
|
.w-\[68px\] {
|
|
1918
1920
|
width: 68px;
|
|
1919
1921
|
}
|
|
1922
|
+
.w-\[83px\] {
|
|
1923
|
+
width: 83px;
|
|
1924
|
+
}
|
|
1920
1925
|
.w-\[114px\] {
|
|
1921
1926
|
width: 114px;
|
|
1922
1927
|
}
|
|
@@ -2249,6 +2254,20 @@
|
|
|
2249
2254
|
.gap-y-\[15px\] {
|
|
2250
2255
|
row-gap: 15px;
|
|
2251
2256
|
}
|
|
2257
|
+
.divide-y {
|
|
2258
|
+
:where(& > :not(:last-child)) {
|
|
2259
|
+
--tw-divide-y-reverse: 0;
|
|
2260
|
+
border-bottom-style: var(--tw-border-style);
|
|
2261
|
+
border-top-style: var(--tw-border-style);
|
|
2262
|
+
border-top-width: calc(1px * var(--tw-divide-y-reverse));
|
|
2263
|
+
border-bottom-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
|
|
2264
|
+
}
|
|
2265
|
+
}
|
|
2266
|
+
.divide-gray-200 {
|
|
2267
|
+
:where(& > :not(:last-child)) {
|
|
2268
|
+
border-color: var(--color-gray-200);
|
|
2269
|
+
}
|
|
2270
|
+
}
|
|
2252
2271
|
.truncate {
|
|
2253
2272
|
overflow: hidden;
|
|
2254
2273
|
text-overflow: ellipsis;
|
|
@@ -2981,6 +3000,9 @@
|
|
|
2981
3000
|
.opacity-80 {
|
|
2982
3001
|
opacity: 80%;
|
|
2983
3002
|
}
|
|
3003
|
+
.opacity-100 {
|
|
3004
|
+
opacity: 100%;
|
|
3005
|
+
}
|
|
2984
3006
|
.shadow {
|
|
2985
3007
|
--tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
2986
3008
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
@@ -3092,6 +3114,10 @@
|
|
|
3092
3114
|
--tw-duration: 75ms;
|
|
3093
3115
|
transition-duration: 75ms;
|
|
3094
3116
|
}
|
|
3117
|
+
.duration-150 {
|
|
3118
|
+
--tw-duration: 150ms;
|
|
3119
|
+
transition-duration: 150ms;
|
|
3120
|
+
}
|
|
3095
3121
|
.duration-200 {
|
|
3096
3122
|
--tw-duration: 200ms;
|
|
3097
3123
|
transition-duration: 200ms;
|
|
@@ -3844,6 +3870,13 @@
|
|
|
3844
3870
|
}
|
|
3845
3871
|
}
|
|
3846
3872
|
}
|
|
3873
|
+
.hover\:text-red-700 {
|
|
3874
|
+
&:hover {
|
|
3875
|
+
@media (hover: hover) {
|
|
3876
|
+
color: var(--color-red-700);
|
|
3877
|
+
}
|
|
3878
|
+
}
|
|
3879
|
+
}
|
|
3847
3880
|
.hover\:text-red-900 {
|
|
3848
3881
|
&:hover {
|
|
3849
3882
|
@media (hover: hover) {
|
|
@@ -4042,6 +4075,11 @@
|
|
|
4042
4075
|
opacity: 50%;
|
|
4043
4076
|
}
|
|
4044
4077
|
}
|
|
4078
|
+
.active\:opacity-70 {
|
|
4079
|
+
&:active {
|
|
4080
|
+
opacity: 70%;
|
|
4081
|
+
}
|
|
4082
|
+
}
|
|
4045
4083
|
.active\:opacity-75 {
|
|
4046
4084
|
&:active {
|
|
4047
4085
|
opacity: 75%;
|
|
@@ -5306,8 +5344,10 @@ input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-o
|
|
|
5306
5344
|
input[type="number"] {
|
|
5307
5345
|
-moz-appearance: textfield;
|
|
5308
5346
|
}
|
|
5309
|
-
|
|
5310
|
-
|
|
5347
|
+
@layer base {
|
|
5348
|
+
h1, h2, h3, h4, h5, h6, p {
|
|
5349
|
+
color: var(--color-gray-900);
|
|
5350
|
+
}
|
|
5311
5351
|
}
|
|
5312
5352
|
@property --tw-translate-x {
|
|
5313
5353
|
syntax: "*";
|
|
@@ -5349,6 +5389,11 @@ h1, h2, h3, h4, h5, h6, p {
|
|
|
5349
5389
|
inherits: false;
|
|
5350
5390
|
initial-value: 0;
|
|
5351
5391
|
}
|
|
5392
|
+
@property --tw-divide-y-reverse {
|
|
5393
|
+
syntax: "*";
|
|
5394
|
+
inherits: false;
|
|
5395
|
+
initial-value: 0;
|
|
5396
|
+
}
|
|
5352
5397
|
@property --tw-leading {
|
|
5353
5398
|
syntax: "*";
|
|
5354
5399
|
inherits: false;
|