Skip to content

Commit

Permalink
Merge pull request #79 from Kyutech-C3/develop
Browse files Browse the repository at this point in the history
v0.2.2
  • Loading branch information
Simo-C3 authored Dec 1, 2022
2 parents 6fde226 + eaa0ba6 commit 5897139
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 13 deletions.
2 changes: 1 addition & 1 deletion components/Header.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down
4 changes: 0 additions & 4 deletions components/works/WorksCarouselThumb.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
14 changes: 6 additions & 8 deletions layouts/default.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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<void> {
Expand Down

0 comments on commit 5897139

Please sign in to comment.