diff --git a/src/components/footer.vue b/src/components/footer.vue index cc238de..011cd00 100644 --- a/src/components/footer.vue +++ b/src/components/footer.vue @@ -1,7 +1,7 @@ @@ -13,7 +13,6 @@ export default {} .copyright { flex-shrink: 0; display: flex; - flex-direction: column; align-items: center; justify-content: center; width: 100%; @@ -21,8 +20,10 @@ export default {} background: var(--color-plain-1); color: var(--color-grey-2); - a { - margin-bottom: 16px; + .link { + margin-left: 6px; + color: var(--color-blue-1); + text-decoration: underline; } } diff --git a/src/components/header.vue b/src/components/header.vue index 03fc368..820296e 100644 --- a/src/components/header.vue +++ b/src/components/header.vue @@ -110,4 +110,15 @@ export default { content: '免费、快速、开放的 CDN 服务'; } } +@media screen and (max-width: 1024px) { + .common-header { + .navibar { + width: 100%; + padding: 0 32px; + } + .wrapper { + width: 100%; + } + } +}