Adds an explicit meta tag for the viewport, resizes the navigation link size
for smaller screens
This commit is contained in:
Nick Radford 2021-02-09 02:54:59 -08:00
parent 30ebf7b266
commit a30074c055
2 changed files with 4 additions and 0 deletions

View File

@ -44,4 +44,7 @@
.header {
padding: 0 15px;
}
.nav {
font-size: var(--font-size-normal);
}
}

View File

@ -36,6 +36,7 @@ export default function App({ Component, pageProps }) {
<link rel="mask-icon" href="safari-pinned-tab.svg" color="#5bbad5" />
<meta name="msapplication-TileColor" content="#da532c" />
<meta name="theme-color" content="#ffffff" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
</Head>
<Intl>
<Component {...pageProps} />