45 lines
761 B
Vue
45 lines
761 B
Vue
<script setup lang="ts">
|
|
import Dialog from '~/components/ui/Dialog.vue'
|
|
import cogIcon from '~/assets/images/icons/cog.png'
|
|
import pearlIcon from '~/assets/images/icons/pearl.gif'
|
|
|
|
function optionsMenu() {}
|
|
</script>
|
|
|
|
<template>
|
|
<div class="options-layout pass-through">
|
|
<div class="options clickable" @click="optionsMenu()">
|
|
<img
|
|
class="logo user-select-none"
|
|
draggable="false"
|
|
:src="cogIcon"
|
|
alt="Options"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped lang="scss">
|
|
.options {
|
|
display: flex;
|
|
flex-direction: row;
|
|
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
padding: 10px;
|
|
|
|
&-layout {
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
right: 0;
|
|
}
|
|
}
|
|
|
|
.logo {
|
|
width: 16px;
|
|
height: 16px;
|
|
}
|
|
</style>
|