From 59ce39b7b20934ea2030ddf6779afa34a789858c Mon Sep 17 00:00:00 2001 From: Simo-C3 Date: Thu, 1 Dec 2022 14:20:47 +0900 Subject: [PATCH 1/2] =?UTF-8?q?[change]=20=E5=AD=A3=E7=AF=80=E3=83=86?= =?UTF-8?q?=E3=83=BC=E3=83=9E=E3=82=92=E4=B8=80=E8=88=AC=E3=83=A6=E3=83=BC?= =?UTF-8?q?=E3=82=B6=E3=83=BC=E3=81=AB=E3=82=82=E9=81=A9=E7=94=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- layouts/default.vue | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/layouts/default.vue b/layouts/default.vue index 646077a..b8d9bdd 100644 --- a/layouts/default.vue +++ b/layouts/default.vue @@ -73,15 +73,13 @@ export default class Default extends Vue { } initTheme() { - if (this.getNowLogin) { - const winter = ['1', '12'] - if (winter.includes(this.nowMonth)) { - this.themeClass = 'theme-winter' - } else { - this.themeClass = 'theme-base' - } - this.useCustomTheme = this.themeClass !== 'theme-base' + const winter = ['1', '12'] + if (winter.includes(this.nowMonth)) { + this.themeClass = 'theme-winter' + } else { + this.themeClass = 'theme-base' } + this.useCustomTheme = this.themeClass !== 'theme-base' } async particlesInit(engine: Engine): Promise { From eaa0ba61d851f2c503936299b9eaf8212f5e0553 Mon Sep 17 00:00:00 2001 From: Simo-C3 Date: Thu, 1 Dec 2022 14:29:16 +0900 Subject: [PATCH 2/2] =?UTF-8?q?[change]=20=E3=82=B9=E3=82=BF=E3=82=A4?= =?UTF-8?q?=E3=83=AB=E3=81=AE=E8=AA=BF=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/Header.vue | 2 +- components/works/WorksCarouselThumb.vue | 4 ---- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/components/Header.vue b/components/Header.vue index b501b76..0966431 100644 --- a/components/Header.vue +++ b/components/Header.vue @@ -254,7 +254,7 @@ export default class Header extends Vue { border-style: solid; border-right: 50px solid transparent; border-left: 50px solid transparent; - border-bottom: 50px solid #ffeed4; + border-bottom: 50px solid var(--bg-color); border-top: 0; transform: rotate(45deg); } diff --git a/components/works/WorksCarouselThumb.vue b/components/works/WorksCarouselThumb.vue index ad82abd..2b3d78f 100644 --- a/components/works/WorksCarouselThumb.vue +++ b/components/works/WorksCarouselThumb.vue @@ -91,10 +91,6 @@ import { Ref } from 'nuxt-property-decorator' -import { Swiper } from 'swiper' -import 'swiper/swiper-bundle.min.css' -import 'swiper/swiper-bundle.min.js' - import ItemImageView from '@/components/works/carouselItem/ImageView.vue' import { Asset } from '@/types'