@thecb/components 12.0.3-beta.0 → 12.0.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/index.cjs.js +3 -3
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +3 -3
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/molecules/link-card/LinkCard.js +1 -1
- package/src/components/molecules/link-card/LinkCard.theme.js +3 -2
- package/src/components/molecules/nav-menu/NavMenuMobile.js +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -45825,7 +45825,7 @@ var disabledBorderColor$1 = GHOST_GREY;
|
|
|
45825
45825
|
var disabledColor$2 = MANATEE_GREY;
|
|
45826
45826
|
var activeBackgroundColor$1 = CORNFLOWER_BLUE;
|
|
45827
45827
|
var backgroundColor$a = LINK_WATER;
|
|
45828
|
-
var borderColor$5 =
|
|
45828
|
+
var borderColor$5 = MOON_RAKER;
|
|
45829
45829
|
var color$c = ROYAL_BLUE_VIVID;
|
|
45830
45830
|
var textColor$5 = BRIGHT_GREY;
|
|
45831
45831
|
var fallbackValues$L = {
|
|
@@ -45956,7 +45956,7 @@ var LinkCard = function LinkCard(_ref) {
|
|
|
45956
45956
|
}
|
|
45957
45957
|
return /*#__PURE__*/React__default.createElement(InternalLink, {
|
|
45958
45958
|
key: "link-card-".concat(locatorSlug),
|
|
45959
|
-
to: disabled ?
|
|
45959
|
+
to: disabled ? undefined : href,
|
|
45960
45960
|
isUnderlined: false,
|
|
45961
45961
|
hoverUnderline: false,
|
|
45962
45962
|
tabIndex: disabled ? "-1" : "0",
|
|
@@ -46126,7 +46126,7 @@ var NavMenuMobile = function NavMenuMobile(_ref3) {
|
|
|
46126
46126
|
width: "100%",
|
|
46127
46127
|
maxWidth: "400px",
|
|
46128
46128
|
padding: "1rem 0.5rem",
|
|
46129
|
-
extraStyles: "position: relative; max-width: 400px; height: calc(100vh - 72px);",
|
|
46129
|
+
extraStyles: "position: relative; max-width: 400px; height: calc(100vh - 72px); overflow-y: auto;",
|
|
46130
46130
|
background: themeValues.backgroundColor
|
|
46131
46131
|
}, menuContent));
|
|
46132
46132
|
};
|