diff --git a/src/client/component/contentinfo.tsx b/src/client/component/contentinfo.tsx
index 82d021e..579fc80 100644
--- a/src/client/component/contentinfo.tsx
+++ b/src/client/component/contentinfo.tsx
@@ -97,6 +97,7 @@ export const ContentInfo = (props: {
[theme.breakpoints.down("sm")]: {
flexDirection: "column",
alignItems: "center",
+ height: "auto",
}
}} elevation={4}>
({
},
}));
+const StyledNav = styled('nav')(({theme}) => ({
+ [theme.breakpoints.up("sm")]: {
+ width: theme.spacing(7)
+ }
+}));
+
const closedMixin = (theme: Theme) => ({
overflowX: 'hidden',
width: `calc(${theme.spacing(7)} + 1px)`,
});
+
export const Headline = (prop: {
children?: React.ReactNode,
classes?: {
@@ -169,7 +176,7 @@ export const Headline = (prop: {
{renderProfileMenu}
-
+