diff --git a/src/app.html b/src/app.html index 526fdb8a9f..365ad6737c 100644 --- a/src/app.html +++ b/src/app.html @@ -5,6 +5,7 @@ + %svelte.head% diff --git a/src/lib/components/navigation-link.svelte b/src/lib/components/navigation-link.svelte index a5783c7dbf..4d862870a5 100644 --- a/src/lib/components/navigation-link.svelte +++ b/src/lib/components/navigation-link.svelte @@ -25,6 +25,7 @@ a { width: 90px; + font-size: 12px; color: #e0e7ff; margin-bottom: 18px; display: flex; diff --git a/src/routes/__layout.svelte b/src/routes/__layout.svelte index be3b0f5af0..f854fcca47 100644 --- a/src/routes/__layout.svelte +++ b/src/routes/__layout.svelte @@ -36,13 +36,17 @@ grid-gap: 24px; grid-template-columns: 0fr 1fr; } + #logo { margin-bottom: 20px; } + p { color: #fff; text-align: center; + font-size: 12px; } + #sidebar { display: flex; flex-direction: column; diff --git a/static/css/global.css b/static/css/global.css new file mode 100644 index 0000000000..9de9851443 --- /dev/null +++ b/static/css/global.css @@ -0,0 +1,9 @@ +@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap'); + +*, html, body { + box-sizing: border-box; +} + +body { + font-family: Inter; +}