Change screenshot(実装漏れ)

This commit is contained in:
かっこかり 2023-12-22 07:58:39 +09:00 committed by GitHub
parent b4e507da32
commit b294d7c816
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -42,7 +42,7 @@ const { locale, fallbackLocale } = useI18n();
const localePath = useLocalePath(); const localePath = useLocalePath();
const showTagline = ref(false); const showTagline = ref(false);
const colorMode = useColorMode(); const colorMode = useColorMode();
const mobileScreenShot = computed(() => (colorMode.preference === 'dark') ? '/img/hero/screenshot-mobile-en.png' : '/img/hero/screenshot-mobile.png'); const mobileScreenShot = computed(() => (colorMode.preference === 'dark') ? '/img/hero/misskey-mobile-dark.png' : '/img/hero/misskey-mobile-light.png');
// //
const localeState = useState('miHub_blog_originalLocale', () => locale.value); const localeState = useState('miHub_blog_originalLocale', () => locale.value);
@ -79,4 +79,4 @@ onMounted(() => {
.notice { .notice {
background-image: linear-gradient(90deg, #86b300, #4ab300, #4ab300); background-image: linear-gradient(90deg, #86b300, #4ab300, #4ab300);
} }
</style> </style>