@jsenv/navi 0.12.34 → 0.12.36

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.
@@ -15197,6 +15197,10 @@ installImportMetaCss(import.meta);import.meta.css = /* css */`
15197
15197
  outline-color: var(--link-outline-color);
15198
15198
  cursor: var(--x-link-cursor);
15199
15199
 
15200
+ /* Current */
15201
+ &[data-href-current] {
15202
+ --x-link-cursor: default;
15203
+ }
15200
15204
  /* Hover */
15201
15205
  &[data-hover] {
15202
15206
  --x-link-color: var(--x-link-color-hover);
@@ -15826,7 +15830,9 @@ const TabRoute = ({
15826
15830
  ...props,
15827
15831
  children: jsx(RouteLink, {
15828
15832
  route: route,
15833
+ expand: true,
15829
15834
  discrete: true,
15835
+ align: "center",
15830
15836
  children: children
15831
15837
  })
15832
15838
  });