diff options
Diffstat (limited to 'src/layouts/Layout.astro')
| -rw-r--r-- | src/layouts/Layout.astro | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index 24d0198..a5315be 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -31,8 +31,13 @@ function qualifiedLocalisedPath(newLocale: Locale) { <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <link rel="icon" href="/favicon.ico" /> <link rel="sitemap" href="/sitemap-index.xml" /> - <link rel="stylesheet" href="/normalize.css" /> - <link rel="stylesheet" href="/main.css" /> + <link rel="stylesheet" href="/css/index.css" /> + <link rel="stylesheet" href="/css/index.xs.css" media="(min-width: 16rem)" /> + <link rel="stylesheet" href="/css/index.sm.css" media="(min-width: 32rem)" /> + <link rel="stylesheet" href="/css/index.md.css" media="(min-width: 48rem)" /> + <link rel="stylesheet" href="/css/index.lg.css" media="(min-width: 64rem)" /> + <link rel="stylesheet" href="/css/index.xl.css" media="(min-width: 96rem)" /> + <link rel="stylesheet" href="/css/index.xl.css" media="(min-width: 120rem)" /> <link rel="alternate" type="application/rss+xml" |
