perf: 优化 标签页、归档页 布局

This commit is contained in:
pengzhanbo 2024-02-05 08:57:58 +08:00
parent ae598a1f0f
commit 977d965c12
2 changed files with 4 additions and 6 deletions

View File

@ -29,7 +29,6 @@ const { archives } = useArchives()
<style scoped>
.archives-wrapper {
flex: 1;
max-width: 768px;
padding: 32px 24px;
margin: 0 auto;
}
@ -97,9 +96,9 @@ const { archives } = useArchives()
}
}
@media (min-width: 960px) {
@media (min-width: 1200px) {
.archives-wrapper {
margin-left: auto;
margin-left: 0;
}
}
</style>

View File

@ -42,7 +42,6 @@ const { tags: tagsLink } = useBlogExtract()
<style scoped>
.tags-wrapper {
flex: 1;
max-width: 768px;
padding: 32px 24px;
margin: 0 auto;
}
@ -151,9 +150,9 @@ const { tags: tagsLink } = useBlogExtract()
}
}
@media (min-width: 960px) {
@media (min-width: 1200px) {
.tags-wrapper {
margin-left: auto;
margin-left: 0;
}
}
</style>