master
yutent 2023-01-06 19:07:48 +08:00
parent ccc6d1f418
commit ad991262ea
2 changed files with 17 additions and 5 deletions

View File

@ -1,7 +1,7 @@
<template> <template>
<footer class="copyright"> <footer class="copyright">
<a target="_blank" href="https://beian.miit.gov.cn/">桂ICP备2022011680号-1</a> <span>&copy;Copyright 2022 jscdn.ink Power by</span>
<span>&copy;Copyright 2022 jscdn.ink </span> <a class="link" target="_blank" href="//github.com/bytedo/vue-live">vue-live</a>
</footer> </footer>
</template> </template>
@ -13,7 +13,6 @@ export default {}
.copyright { .copyright {
flex-shrink: 0; flex-shrink: 0;
display: flex; display: flex;
flex-direction: column;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
width: 100%; width: 100%;
@ -21,8 +20,10 @@ export default {}
background: var(--color-plain-1); background: var(--color-plain-1);
color: var(--color-grey-2); color: var(--color-grey-2);
a { .link {
margin-bottom: 16px; margin-left: 6px;
color: var(--color-blue-1);
text-decoration: underline;
} }
} }
</style> </style>

View File

@ -110,4 +110,15 @@ export default {
content: '免费、快速、开放的 CDN 服务'; content: '免费、快速、开放的 CDN 服务';
} }
} }
@media screen and (max-width: 1024px) {
.common-header {
.navibar {
width: 100%;
padding: 0 32px;
}
.wrapper {
width: 100%;
}
}
}
</style> </style>