mirror of
https://github.com/imezx/Warp.git
synced 2025-04-25 15:40:02 +00:00
60 lines
1.3 KiB
Vue
60 lines
1.3 KiB
Vue
<script setup lang="ts">
|
|
import { useData } from '../composables/data'
|
|
import { useSidebar } from '../composables/sidebar'
|
|
|
|
const { theme, frontmatter } = useData()
|
|
const { hasSidebar } = useSidebar()
|
|
</script>
|
|
|
|
<template>
|
|
<footer v-if="theme.footer && frontmatter.footer !== false" class="VPFooter" :class="{ 'has-sidebar': hasSidebar }">
|
|
<div class="container">
|
|
<p v-if="theme.footer.message" class="message" v-html="theme.footer.message"></p>
|
|
<p v-if="theme.footer.copyright" class="copyright" v-html="theme.footer.copyright"></p>
|
|
</div>
|
|
</footer>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.VPFooter {
|
|
position: relative;
|
|
z-index: var(--vp-z-index-footer);
|
|
border-top: 1px solid var(--vp-c-gutter);
|
|
padding: 32px 24px;
|
|
background-color: var(--vp-c-bg);
|
|
}
|
|
|
|
.VPFooter.has-sidebar {
|
|
display: none;
|
|
}
|
|
|
|
.VPFooter :deep(a) {
|
|
text-decoration-line: underline;
|
|
text-underline-offset: 2px;
|
|
transition: color 0.25s;
|
|
}
|
|
|
|
.VPFooter :deep(a:hover) {
|
|
color: var(--vp-c-text-1);
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.VPFooter {
|
|
padding: 32px;
|
|
}
|
|
}
|
|
|
|
.container {
|
|
margin: 0 auto;
|
|
max-width: var(--vp-layout-max-width);
|
|
text-align: center;
|
|
}
|
|
|
|
.message,
|
|
.copyright {
|
|
line-height: 24px;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
color: var(--vp-c-text-2);
|
|
}
|
|
</style>
|