修复样式

master
yutent 2023-02-20 00:37:30 +08:00
parent e5a86463f8
commit 5a8477b5cc
3 changed files with 21 additions and 10 deletions

View File

@ -11,10 +11,20 @@
export default {} export default {}
</script> </script>
<style scoped> <style lang="scss" scoped>
.footer { .footer {
width: 100%; width: 100%;
height: 64px; height: 64px;
border-top: 1px solid var(--color-plain-2); border-top: 1px solid var(--color-plain-2);
} }
@media screen and (max-width: 1024px) {
.footer {
.wrapper {
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
}
}
}
</style> </style>

View File

@ -53,4 +53,14 @@ export default {
} }
} }
} }
@media screen and (max-width: 1024px) {
.topbar {
padding: 0 16px;
}
.wrapper {
width: 100%;
}
}
</style> </style>

View File

@ -670,7 +670,6 @@ export default {
} }
@media screen and (max-width: 1024px) { @media screen and (max-width: 1024px) {
.topbar,
.main { .main {
padding: 0 16px; padding: 0 16px;
} }
@ -678,13 +677,5 @@ export default {
.wrapper { .wrapper {
width: 100%; width: 100%;
} }
.footer {
.wrapper {
flex-direction: column;
align-items: center;
justify-content: center;
}
}
} }
</style> </style>