diff --git a/src/views/AwardPage/components/Bloom.vue b/src/views/AwardPage/components/Bloom.vue index f7b516a..fea4ae9 100644 --- a/src/views/AwardPage/components/Bloom.vue +++ b/src/views/AwardPage/components/Bloom.vue @@ -173,6 +173,7 @@ background-size: 100% 100%; .title { font-size: 4rem; + font-weight: 600; color: #232323; margin-bottom: 2.4rem; } diff --git a/src/views/AwardPage/components/JudgesSection.vue b/src/views/AwardPage/components/JudgesSection.vue index a53efdf..55c814b 100644 --- a/src/views/AwardPage/components/JudgesSection.vue +++ b/src/views/AwardPage/components/JudgesSection.vue @@ -185,6 +185,7 @@ onBeforeUnmount(() => { font-family: 'PoppinsBold'; font-weight: 600; font-size: 4rem; + margin-bottom: 2.4rem; } .logo { margin: 2.4rem 0 2.2rem; diff --git a/src/views/AwardPage/components/SelectionSection.vue b/src/views/AwardPage/components/SelectionSection.vue index a003b70..5a1231b 100644 --- a/src/views/AwardPage/components/SelectionSection.vue +++ b/src/views/AwardPage/components/SelectionSection.vue @@ -131,6 +131,7 @@ onBeforeUnmount(() => { font-family: 'PoppinsBold'; font-weight: 600; font-size: 4rem; + margin-bottom: 2.4rem; } .logo { margin: 2.3rem 0 2.3rem; diff --git a/src/views/AwardPage/components/TimeLine.vue b/src/views/AwardPage/components/TimeLine.vue index 0918ba8..68ce67a 100644 --- a/src/views/AwardPage/components/TimeLine.vue +++ b/src/views/AwardPage/components/TimeLine.vue @@ -227,6 +227,7 @@ font-size: 4rem; text-align: center; vertical-align: middle; + margin-bottom: 2.4rem; } .logo { margin: 2.4rem 0 2.2rem 0; diff --git a/src/views/AwardPage/container.vue b/src/views/AwardPage/container.vue index 8b46a2a..4ae784f 100644 --- a/src/views/AwardPage/container.vue +++ b/src/views/AwardPage/container.vue @@ -147,11 +147,12 @@ } ) const handleBtnClick = () => { + const lang = route.params.lang ? `/${route.params.lang}` : '' if (btnType.value === 'index') { router.push(`${lang}/contestants`) } else { - router.push(`${lang}`) + router.push(`${lang}/`) } }