@jsenv/navi 0.14.2 → 0.14.3
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/jsenv_navi.js +11 -1
- package/dist/jsenv_navi.js.map +4 -4
- package/package.json +1 -1
package/dist/jsenv_navi.js
CHANGED
|
@@ -14316,11 +14316,15 @@ installImportMetaCss(import.meta);import.meta.css = /* css */`
|
|
|
14316
14316
|
}
|
|
14317
14317
|
.navi_icon_foreground {
|
|
14318
14318
|
position: absolute;
|
|
14319
|
-
|
|
14319
|
+
top: 50%;
|
|
14320
|
+
left: 0;
|
|
14320
14321
|
display: inline-flex;
|
|
14321
14322
|
box-sizing: border-box;
|
|
14323
|
+
aspect-ratio: 1/1;
|
|
14324
|
+
width: 100%;
|
|
14322
14325
|
align-items: center;
|
|
14323
14326
|
justify-content: start;
|
|
14327
|
+
transform: translateY(-50%);
|
|
14324
14328
|
}
|
|
14325
14329
|
.navi_icon_foreground > .navi_text {
|
|
14326
14330
|
display: flex;
|
|
@@ -17065,6 +17069,8 @@ const TabRoute = ({
|
|
|
17065
17069
|
paddingX,
|
|
17066
17070
|
padding,
|
|
17067
17071
|
paddingY,
|
|
17072
|
+
alignX,
|
|
17073
|
+
alignY,
|
|
17068
17074
|
...props
|
|
17069
17075
|
}) => {
|
|
17070
17076
|
const {
|
|
@@ -17075,6 +17081,8 @@ const TabRoute = ({
|
|
|
17075
17081
|
return jsx(TabBasic, {
|
|
17076
17082
|
selected: selected,
|
|
17077
17083
|
paddingX: "0",
|
|
17084
|
+
alignX: alignX,
|
|
17085
|
+
alignY: alignY,
|
|
17078
17086
|
...props,
|
|
17079
17087
|
children: jsx(RouteLink, {
|
|
17080
17088
|
route: route,
|
|
@@ -17084,6 +17092,8 @@ const TabRoute = ({
|
|
|
17084
17092
|
paddingX: paddingX,
|
|
17085
17093
|
padding: padding,
|
|
17086
17094
|
paddingY: paddingY,
|
|
17095
|
+
alignX: alignX,
|
|
17096
|
+
alignY: alignY,
|
|
17087
17097
|
children: children
|
|
17088
17098
|
})
|
|
17089
17099
|
});
|