Files
master-thesis-presentation/global-bottom.vue
2024-04-02 19:58:23 +02:00

12 lines
301 B
Vue

<script setup>
import { useDarkMode } from '@slidev/client'
const { isDark } = useDarkMode()
</script>
<template>
<footer class="absolute bottom-10 right-10 p-2">
<img v-if="isDark" src="/rptu_white.svg" width="80" />
<img v-else src="/rptu_black.svg" width="80" />
</footer>
</template>