diff --git a/components/layout/MenuLayout.module.css b/components/layout/MenuLayout.module.css index c0665d4c..126d31a3 100644 --- a/components/layout/MenuLayout.module.css +++ b/components/layout/MenuLayout.module.css @@ -19,9 +19,16 @@ @media only screen and (max-width: 992px) { .container { + flex-direction: column; height: auto; } + .container .menu { + display: flex; + justify-content: space-around; + align-items: flex-start; + } + .container .content { border-top: 1px solid var(--gray300); border-left: 0; diff --git a/components/pages/WebsiteDetails.js b/components/pages/WebsiteDetails.js index 876fbfc4..2d9dceaa 100644 --- a/components/pages/WebsiteDetails.js +++ b/components/pages/WebsiteDetails.js @@ -49,7 +49,7 @@ export default function WebsiteDetails({ websiteId }) { } = usePageQuery(); const BackButton = () => ( -
+
} size="small"> diff --git a/components/pages/WebsiteDetails.module.css b/components/pages/WebsiteDetails.module.css index e8dd5399..6beacbff 100644 --- a/components/pages/WebsiteDetails.module.css +++ b/components/pages/WebsiteDetails.module.css @@ -33,3 +33,10 @@ .eventschart { padding-top: 30px; } + +@media only screen and (max-width: 992px) { + .menu { + display: flex; + flex-direction: column; + } +}