@pingux/astro 1.39.1 → 1.39.2-alpha.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/lib/cjs/components/NavBar/NavBar.stories.js +7 -8
- package/lib/cjs/components/NavBarSection/NavBarItem.js +6 -5
- package/lib/cjs/components/NavBarSection/NavBarItemBody.js +7 -9
- package/lib/cjs/components/NavBarSection/NavBarItemButton.js +2 -1
- package/lib/cjs/components/NavBarSection/NavBarItemHeader.js +6 -5
- package/lib/cjs/components/NavBarSection/NavBarItemLink.js +2 -1
- package/lib/cjs/components/NavBarSection/NavBarSection.js +5 -12
- package/lib/cjs/styles/variants/buttons.js +5 -6
- package/lib/cjs/styles/variants/navBar.js +5 -6
- package/lib/cjs/styles/variants/separator.js +7 -8
- package/lib/cjs/styles/variants/text.js +9 -6
- package/lib/components/NavBar/NavBar.stories.js +7 -8
- package/lib/components/NavBarSection/NavBarItem.js +6 -5
- package/lib/components/NavBarSection/NavBarItemBody.js +7 -9
- package/lib/components/NavBarSection/NavBarItemButton.js +2 -1
- package/lib/components/NavBarSection/NavBarItemHeader.js +6 -5
- package/lib/components/NavBarSection/NavBarItemLink.js +2 -1
- package/lib/components/NavBarSection/NavBarSection.js +6 -13
- package/lib/styles/variants/buttons.js +5 -6
- package/lib/styles/variants/navBar.js +5 -6
- package/lib/styles/variants/separator.js +7 -8
- package/lib/styles/variants/text.js +9 -6
- package/package.json +1 -1
- package/NOTICE.html +0 -4707
@@ -159,20 +159,23 @@ var environmentBreadcrumb = _objectSpread(_objectSpread({}, base), {}, {
|
|
159
159
|
|
160
160
|
var navBarSubtitle = {
|
161
161
|
ml: 'md',
|
162
|
-
|
163
|
-
fontWeight:
|
164
|
-
fontSize: '
|
162
|
+
my: 'sm',
|
163
|
+
fontWeight: 1,
|
164
|
+
fontSize: 'sm',
|
165
165
|
color: 'accent.80',
|
166
166
|
zIndex: '100'
|
167
167
|
};
|
168
168
|
|
169
169
|
var navBarHeaderText = _objectSpread(_objectSpread({}, wordWrap), {}, {
|
170
170
|
whiteSpace: 'break-spaces',
|
171
|
-
lineHeight:
|
172
|
-
fontSize: '
|
171
|
+
lineHeight: 1,
|
172
|
+
fontSize: 'md',
|
173
173
|
fontWeight: 1,
|
174
174
|
maxWidth: '150px',
|
175
|
-
color: '
|
175
|
+
color: 'neutral.95',
|
176
|
+
'.is-selected &': {
|
177
|
+
color: 'white'
|
178
|
+
}
|
176
179
|
});
|
177
180
|
|
178
181
|
var collapsiblePanellItem = _objectSpread(_objectSpread({}, wordWrap), {}, {
|