generated from corrad-software/corrad-af-2024
21 lines
556 B
Vue
21 lines
556 B
Vue
<script setup></script>
|
|
|
|
<template>
|
|
<div>
|
|
<div
|
|
class="w-full h-14 z-20 bg-white dark:bg-slate-800 fixed top-0 right-0 px-5 py-3 duration-300 shadow-md shadow-slate-200 dark:shadow-slate-900"
|
|
>
|
|
<div class="flex justify-between">
|
|
<div>
|
|
<h1 class="text-2xl font-semibold text-gray-800 dark:text-white">
|
|
<Icon
|
|
name="material-symbols:chevron-left-rounded"
|
|
class="inline-block w-6 h-6 mr-2"
|
|
/>
|
|
</h1>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|