Mobile css updates.

This commit is contained in:
Mike Cao 2022-03-11 16:04:05 -08:00
parent cdd7273194
commit 5f821461c2
7 changed files with 15 additions and 15 deletions

View file

@ -41,6 +41,7 @@
.header .buttons {
flex: 1;
}
.links {
order: 2;
margin: 20px 0;
@ -50,7 +51,7 @@
@media only screen and (max-width: 768px) {
.header {
padding: 0 15px;
padding: 0 30px;
}
.buttons,

View file

@ -14,9 +14,7 @@ export default function Layout({ title, children, header = true, footer = true }
</Head>
{header && <Header />}
<main className="container" dir={dir}>
{children}
</main>
<main>{children}</main>
{footer && <Footer />}
<div id="__modals" dir={dir} />
</>