mirror of
https://github.com/imezx/Warp.git
synced 2025-04-26 16:00:03 +00:00
42 lines
639 B
Vue
42 lines
639 B
Vue
|
<script lang="ts" setup>
|
||
|
defineProps<{
|
||
|
show: boolean
|
||
|
}>()
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<transition name="fade">
|
||
|
<div v-if="show" class="VPBackdrop" />
|
||
|
</transition>
|
||
|
</template>
|
||
|
|
||
|
<style scoped>
|
||
|
.VPBackdrop {
|
||
|
position: fixed;
|
||
|
top: 0;
|
||
|
/*rtl:ignore*/
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
/*rtl:ignore*/
|
||
|
left: 0;
|
||
|
z-index: var(--vp-z-index-backdrop);
|
||
|
background: var(--vp-backdrop-bg-color);
|
||
|
transition: opacity 0.5s;
|
||
|
}
|
||
|
|
||
|
.VPBackdrop.fade-enter-from,
|
||
|
.VPBackdrop.fade-leave-to {
|
||
|
opacity: 0;
|
||
|
}
|
||
|
|
||
|
.VPBackdrop.fade-leave-active {
|
||
|
transition-duration: .25s;
|
||
|
}
|
||
|
|
||
|
@media (min-width: 1280px) {
|
||
|
.VPBackdrop {
|
||
|
display: none;
|
||
|
}
|
||
|
}
|
||
|
</style>
|