umwd-components 0.1.80 → 0.1.81
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.
|
@@ -56,7 +56,10 @@ function Footer(_ref) {
|
|
|
56
56
|
maxWidth = "lg"
|
|
57
57
|
} = _ref;
|
|
58
58
|
return /*#__PURE__*/React.createElement(material.AppBar, {
|
|
59
|
-
position: "relative"
|
|
59
|
+
position: "relative",
|
|
60
|
+
sx: {
|
|
61
|
+
backgroundColor: theme.palette.primary.dark
|
|
62
|
+
}
|
|
60
63
|
}, /*#__PURE__*/React.createElement(material.Container, {
|
|
61
64
|
maxWidth: maxWidth
|
|
62
65
|
}, /*#__PURE__*/React.createElement(material.Toolbar, {
|
|
@@ -52,7 +52,10 @@ function Footer(_ref) {
|
|
|
52
52
|
maxWidth = "lg"
|
|
53
53
|
} = _ref;
|
|
54
54
|
return /*#__PURE__*/React.createElement(AppBar, {
|
|
55
|
-
position: "relative"
|
|
55
|
+
position: "relative",
|
|
56
|
+
sx: {
|
|
57
|
+
backgroundColor: theme.palette.primary.dark
|
|
58
|
+
}
|
|
56
59
|
}, /*#__PURE__*/React.createElement(Container, {
|
|
57
60
|
maxWidth: maxWidth
|
|
58
61
|
}, /*#__PURE__*/React.createElement(Toolbar, {
|
package/package.json
CHANGED
package/src/components/Footer.js
CHANGED
|
@@ -62,7 +62,10 @@ function Footer({
|
|
|
62
62
|
maxWidth = "lg",
|
|
63
63
|
}) {
|
|
64
64
|
return (
|
|
65
|
-
<AppBar
|
|
65
|
+
<AppBar
|
|
66
|
+
position="relative"
|
|
67
|
+
sx={{ backgroundColor: theme.palette.primary.dark }}
|
|
68
|
+
>
|
|
66
69
|
<Container maxWidth={maxWidth}>
|
|
67
70
|
<Toolbar disableGutters>
|
|
68
71
|
<Grid container sx={{ p: 2 }} spacing={2}>
|