@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.cjs.js
CHANGED
|
@@ -45833,7 +45833,7 @@ var disabledBorderColor$1 = GHOST_GREY;
|
|
|
45833
45833
|
var disabledColor$2 = MANATEE_GREY;
|
|
45834
45834
|
var activeBackgroundColor$1 = CORNFLOWER_BLUE;
|
|
45835
45835
|
var backgroundColor$a = LINK_WATER;
|
|
45836
|
-
var borderColor$5 =
|
|
45836
|
+
var borderColor$5 = MOON_RAKER;
|
|
45837
45837
|
var color$c = ROYAL_BLUE_VIVID;
|
|
45838
45838
|
var textColor$5 = BRIGHT_GREY;
|
|
45839
45839
|
var fallbackValues$L = {
|
|
@@ -45964,7 +45964,7 @@ var LinkCard = function LinkCard(_ref) {
|
|
|
45964
45964
|
}
|
|
45965
45965
|
return /*#__PURE__*/React__default.createElement(InternalLink, {
|
|
45966
45966
|
key: "link-card-".concat(locatorSlug),
|
|
45967
|
-
to: disabled ?
|
|
45967
|
+
to: disabled ? undefined : href,
|
|
45968
45968
|
isUnderlined: false,
|
|
45969
45969
|
hoverUnderline: false,
|
|
45970
45970
|
tabIndex: disabled ? "-1" : "0",
|
|
@@ -46134,7 +46134,7 @@ var NavMenuMobile = function NavMenuMobile(_ref3) {
|
|
|
46134
46134
|
width: "100%",
|
|
46135
46135
|
maxWidth: "400px",
|
|
46136
46136
|
padding: "1rem 0.5rem",
|
|
46137
|
-
extraStyles: "position: relative; max-width: 400px; height: calc(100vh - 72px);",
|
|
46137
|
+
extraStyles: "position: relative; max-width: 400px; height: calc(100vh - 72px); overflow-y: auto;",
|
|
46138
46138
|
background: themeValues.backgroundColor
|
|
46139
46139
|
}, menuContent));
|
|
46140
46140
|
};
|