@jsenv/navi 0.12.22 → 0.12.23
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 +1 -5
- package/dist/jsenv_navi.js.map +3 -4
- package/package.json +1 -1
package/dist/jsenv_navi.js
CHANGED
|
@@ -21826,7 +21826,6 @@ installImportMetaCss(import.meta);import.meta.css = /* css */`
|
|
|
21826
21826
|
}
|
|
21827
21827
|
|
|
21828
21828
|
.navi_caption {
|
|
21829
|
-
display: inline;
|
|
21830
21829
|
color: var(--color);
|
|
21831
21830
|
}
|
|
21832
21831
|
`;
|
|
@@ -21838,12 +21837,9 @@ const Caption = ({
|
|
|
21838
21837
|
...rest
|
|
21839
21838
|
}) => {
|
|
21840
21839
|
return jsx(Text, {
|
|
21841
|
-
as: "
|
|
21842
|
-
inline: true,
|
|
21840
|
+
as: "small",
|
|
21843
21841
|
size: "0.8em" // We use em to be relative to the parent (we want to be smaller than the surrounding text)
|
|
21844
21842
|
,
|
|
21845
|
-
marginTop: "sm",
|
|
21846
|
-
marginBottom: "sm",
|
|
21847
21843
|
className: withPropsClassName("navi_caption", className),
|
|
21848
21844
|
...rest,
|
|
21849
21845
|
styleCSSVars: CaptionStyleCSSVars
|