24 lines
1.0 KiB
Vue
24 lines
1.0 KiB
Vue
<template>
|
|
<div class="absolute top-4 right-4 hidden lg:block">
|
|
<div class="w-40 h-40 rounded-full border border-solid border-gray-500 bg-[url('/assets/ui-texture.png')] bg-no-repeat">
|
|
<div class="w-40 h-40 rounded-full shadow-inner"></div>
|
|
</div>
|
|
<div class="absolute -bottom-3 left-1/2 -translate-x-1/2 flex gap-1">
|
|
<button class="w-6 h-6 relative p-0">
|
|
<img class="absolute w-3 h-3 left-1/2 top-1/2 -translate-x-1/2 -translate-y-1/2" src="/assets/icons/plus-icon.svg" />
|
|
<img class="w-full h-full" src="/assets/ui-elements/ui-border-4-corners.svg" />
|
|
</button>
|
|
<button class="w-6 h-6 relative p-0">
|
|
<img class="absolute w-3 h-3 left-1/2 top-1/2 -translate-x-1/2 -translate-y-1/2" src="/assets/icons/minus-icon.svg" />
|
|
<img class="w-full h-full" src="/assets/ui-elements/ui-border-4-corners.svg" />
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { useGameStore } from '@/stores/gameStore'
|
|
|
|
const gameStore = useGameStore()
|
|
</script>
|