@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/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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@texturehq/edges",
3
- "version": "1.36.1",
3
+ "version": "1.37.0",
4
4
  "author": "Nicholas Brown <nick@texturehq.com>",
5
5
  "description": "A shared component library for Texture",
6
6
  "type": "module",