mirror of
https://github.com/imezx/Warp.git
synced 2025-04-25 07:30:02 +00:00
27 lines
468 B
Vue
27 lines
468 B
Vue
<script lang="ts" setup>
|
|
import { useData } from '../composables/data'
|
|
import VPSocialLinks from './VPSocialLinks.vue'
|
|
|
|
const { theme } = useData()
|
|
</script>
|
|
|
|
<template>
|
|
<VPSocialLinks
|
|
v-if="theme.socialLinks"
|
|
class="VPNavBarSocialLinks"
|
|
:links="theme.socialLinks"
|
|
/>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.VPNavBarSocialLinks {
|
|
display: none;
|
|
}
|
|
|
|
@media (min-width: 1280px) {
|
|
.VPNavBarSocialLinks {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
}
|
|
</style>
|