From 1c0cc228f65356524e01b42d1a75cedf098f9efe Mon Sep 17 00:00:00 2001 From: pskfyi Date: Thu, 13 Jan 2022 13:02:43 -0800 Subject: [PATCH] feat: custom fonts --- components/KeyArtStage.vue | 5 +++-- components/TimeHeader.vue | 1 + layouts/default.vue | 9 ++++++++- pages/Missions.vue | 20 +++++--------------- pages/TimeMachine.vue | 8 ++++---- 5 files changed, 21 insertions(+), 22 deletions(-) diff --git a/components/KeyArtStage.vue b/components/KeyArtStage.vue index 1d8d3bc..ca56733 100644 --- a/components/KeyArtStage.vue +++ b/components/KeyArtStage.vue @@ -9,10 +9,11 @@ class="spare-time flex flex-row items-center font-bold rounded-2xl select-none" :class="`text-${$store.getters.activeTab.darkColor}`" > - + diff --git a/components/TimeHeader.vue b/components/TimeHeader.vue index 5163da5..dd854e8 100644 --- a/components/TimeHeader.vue +++ b/components/TimeHeader.vue @@ -42,6 +42,7 @@ export default { header { min-width: 18rem; transition: background-color 2000ms, color 2000ms; + font-family: 'Roboto Slab', serif; } @media (min-width: 768px) { header { diff --git a/layouts/default.vue b/layouts/default.vue index 1edc481..103887b 100644 --- a/layouts/default.vue +++ b/layouts/default.vue @@ -21,7 +21,7 @@ :class="activeTabColorClasses" >
@@ -80,6 +80,8 @@ export default { @@ -99,4 +102,8 @@ main { grid-template-rows: auto minmax(0, 2fr) auto minmax(0, 3fr); transition: background-color 2000ms; } + +.tab-title { + font-family: 'Roboto Slab', serif; +} diff --git a/pages/Missions.vue b/pages/Missions.vue index bebf192..2113a23 100644 --- a/pages/Missions.vue +++ b/pages/Missions.vue @@ -1,12 +1,6 @@