60 lines
1.2 KiB
Vue
Raw Normal View History

2026-05-31 13:21:13 +02:00
<script setup lang="ts">
import { recomputeAllPoppers } from 'floating-vue'
import { onMounted, watchEffect } from 'vue'
import { useNav } from '../composables/useNav'
import PrintContainer from '../internals/PrintContainer.vue'
import { windowSize } from '../state'
const { isPrintMode } = useNav()
watchEffect(() => {
if (isPrintMode)
(document.body.parentNode as HTMLElement).classList.add('print')
else
(document.body.parentNode as HTMLElement).classList.remove('print')
})
onMounted(() => {
recomputeAllPoppers()
})
</script>
<template>
<div id="page-root" class="grid grid-cols-[1fr_max-content]">
<PrintContainer
class="w-full h-full"
:style="{ background: 'var(--slidev-slide-container-background, black)' }"
:width="windowSize.width.value"
/>
<div id="twoslash-container" />
</div>
</template>
<style lang="postcss">
html.print,
html.print body,
html.print #app {
height: auto;
overflow: auto;
}
html.print #page-root {
height: auto;
overflow: hidden;
}
html.print * {
-webkit-print-color-adjust: exact;
}
html.print {
width: 100%;
height: 100%;
overflow: visible;
}
html.print body {
margin: 0 auto;
border: 0;
padding: 0;
float: none;
overflow: visible;
}
</style>