@paygreen/pgui 2.12.0 → 2.12.1
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/cjs/index.js +2 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +2 -2
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -55937,10 +55937,10 @@ var SideNavMenuItem = function (_a) {
|
|
|
55937
55937
|
if (isActive) {
|
|
55938
55938
|
var bg = useColorModeValue('white', 'gray.800');
|
|
55939
55939
|
var color = useColorModeValue('brand.600', 'gray.200');
|
|
55940
|
-
return (React__default["default"].createElement(react.Button, __assign$g({ w: "full", justifyContent: "flex-start", background: bg, color: color }, rest), children));
|
|
55940
|
+
return (React__default["default"].createElement(react.Button, __assign$g({ w: "full", justifyContent: "flex-start", background: bg, color: color, fontSize: 'lg' }, rest), children));
|
|
55941
55941
|
}
|
|
55942
55942
|
var btnColor = useColorModeValue('brand.50', 'gray.200');
|
|
55943
|
-
return (React__default["default"].createElement(react.Button, __assign$g({ w: "full", justifyContent: "flex-start", background: "transparent", color: btnColor, _hover: { background: 'whiteAlpha.200' }, _focus: { background: 'whiteAlpha.200' }, _active: { background: 'whiteAlpha.200' } }, rest), children));
|
|
55943
|
+
return (React__default["default"].createElement(react.Button, __assign$g({ w: "full", justifyContent: "flex-start", background: "transparent", color: btnColor, fontSize: 'lg', _hover: { background: 'whiteAlpha.200' }, _focus: { background: 'whiteAlpha.200' }, _active: { background: 'whiteAlpha.200' } }, rest), children));
|
|
55944
55944
|
};
|
|
55945
55945
|
|
|
55946
55946
|
var TopBar = function (props) { return (React__default["default"].createElement(react.Stack, __assign$g({ minH: "4.6875rem", bg: react.useColorModeValue('white', 'gray.900'), boxShadow: "layout", w: "full", borderRadius: "0", justifyContent: "space-between", spacing: 2, alignItems: { base: 'inherit', xl: 'center' }, direction: { base: 'column', xl: 'row' }, py: { base: 4, xl: 0 } }, props))); };
|