style: 平板样式

This commit is contained in:
2026-04-17 18:10:51 +08:00
parent d3df9c138b
commit 5f05f4773b
2 changed files with 11 additions and 10 deletions

View File

@@ -54,7 +54,7 @@
<router-view />
<div
class="footer flex space-between align-center"
:class="{ mobile: isMobile || isTablet }"
:class="{ mobile: isMobile || isTablet, pad: isTablet }"
:style="mobileStyle"
>
<div class="social-list flex">
@@ -199,10 +199,14 @@ const router = useRouter()
const { locale, t } = useI18n()
const mobileStyle = computed(() => {
if (isMobile) {
if (isMobile.value) {
return {
padding: '0 2.6rem'
}
} else if (isTablet.value) {
return {
padding: '0 6.6rem'
}
} else {
return {}
}
@@ -475,9 +479,6 @@ const handleBtnClick = () => {
width: 4rem;
height: 4rem;
}
.copyright {
// font-size: 2rem;
}
}
}
.drawer-mask {