@texturehq/edges 1.36.1 → 1.37.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/dist/{colors-DlH6URGg.d.cts → colors-CIEgeqF8.d.cts} +230 -10
- package/dist/{colors-Dq4EZi3c.d.ts → colors-CQJMI7Wz.d.ts} +230 -10
- package/dist/index.cjs +29 -95
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/dist/index.d.cts +30 -184
- package/dist/index.d.ts +30 -184
- package/dist/index.js +29 -95
- package/dist/index.js.map +1 -1
- package/dist/server.cjs +2 -92
- package/dist/server.cjs.map +1 -1
- package/dist/server.d.cts +1 -1
- package/dist/server.d.ts +1 -1
- package/dist/server.js +2 -92
- package/dist/server.js.map +1 -1
- package/dist/styles.css +33 -3
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -2420,6 +2420,12 @@
|
|
|
2420
2420
|
.z-\[60\] {
|
|
2421
2421
|
z-index: 60;
|
|
2422
2422
|
}
|
|
2423
|
+
.z-\[70\] {
|
|
2424
|
+
z-index: 70;
|
|
2425
|
+
}
|
|
2426
|
+
.z-\[75\] {
|
|
2427
|
+
z-index: 75;
|
|
2428
|
+
}
|
|
2423
2429
|
.col-auto {
|
|
2424
2430
|
grid-column: auto;
|
|
2425
2431
|
}
|
|
@@ -2708,9 +2714,6 @@
|
|
|
2708
2714
|
.h-12 {
|
|
2709
2715
|
height: var(--spacing-12);
|
|
2710
2716
|
}
|
|
2711
|
-
.h-14 {
|
|
2712
|
-
height: var(--spacing-14);
|
|
2713
|
-
}
|
|
2714
2717
|
.h-16 {
|
|
2715
2718
|
height: var(--spacing-16);
|
|
2716
2719
|
}
|
|
@@ -8006,6 +8009,25 @@
|
|
|
8006
8009
|
font-size: var(--control-text-sm) !important;
|
|
8007
8010
|
}
|
|
8008
8011
|
}
|
|
8012
|
+
.md\:transition-\[transform\,width\] {
|
|
8013
|
+
@media (width >= 48rem) {
|
|
8014
|
+
transition-property: transform,width;
|
|
8015
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
8016
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
8017
|
+
}
|
|
8018
|
+
}
|
|
8019
|
+
.md\:duration-300 {
|
|
8020
|
+
@media (width >= 48rem) {
|
|
8021
|
+
--tw-duration: 300ms;
|
|
8022
|
+
transition-duration: 300ms;
|
|
8023
|
+
}
|
|
8024
|
+
}
|
|
8025
|
+
.md\:ease-in-out {
|
|
8026
|
+
@media (width >= 48rem) {
|
|
8027
|
+
--tw-ease: var(--ease-in-out);
|
|
8028
|
+
transition-timing-function: var(--ease-in-out);
|
|
8029
|
+
}
|
|
8030
|
+
}
|
|
8009
8031
|
.lg\:sticky {
|
|
8010
8032
|
@media (width >= 64rem) {
|
|
8011
8033
|
position: sticky;
|
|
@@ -9313,6 +9335,14 @@
|
|
|
9313
9335
|
background: var(--edges-stack-nav-background, var(--color-background-surface));
|
|
9314
9336
|
border-right: 1px solid var(--edges-stack-nav-border-color, var(--color-border-default));
|
|
9315
9337
|
}
|
|
9338
|
+
.edges-stack-nav__logo {
|
|
9339
|
+
display: flex;
|
|
9340
|
+
align-items: center;
|
|
9341
|
+
justify-content: space-between;
|
|
9342
|
+
height: 60px;
|
|
9343
|
+
padding: 0 24px;
|
|
9344
|
+
border-bottom: 1px solid var(--edges-stack-nav-border-color, var(--color-border-default));
|
|
9345
|
+
}
|
|
9316
9346
|
.edges-stack-nav__header {
|
|
9317
9347
|
border-bottom: 1px solid var(--edges-stack-nav-border-color, var(--color-border-default));
|
|
9318
9348
|
}
|