style: 平板样式
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user