mirror of
https://iceshrimp.dev/Crimekillz/jointrashposs.git
synced 2024-11-23 09:23:50 +01:00
15 lines
256 B
Vue
15 lines
256 B
Vue
<template>
|
|
<nav class="h-[4rem] fixed top-0 left-0 w-full bg-white dark:bg-gray-700 bg-opacity-80 backdrop-blur-lg z-[9950]">
|
|
|
|
</nav>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
defineProps<{
|
|
isOpen: boolean;
|
|
}>();
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style> |