Skip to content

Commit

Permalink
clean up messages
Browse files Browse the repository at this point in the history
  • Loading branch information
wraitii committed Jan 6, 2022
1 parent 4f4cd55 commit e67732a
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions src/components/Messages.vue
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
<template>
<div class="fixed bottom-0 left-0 px-4 py-2" style="z-index: 1000">
<button @click="openLog" class="flex justify-center items-center bg-briq" style="border-radius:50%;width:1.2rem;height:1.2rem;">+</button>
<p class="bg-briq rounded-2xl my-2 px-2 text-lg font-normal">{{ lastMessage ? lastMessage : tooltip }}</p>
<p class="bg-briq rounded-2xl my-2 px-2 text-lg font-normal">
<button @click="openLog" class="min-w-[0.7rem]">+</button>
{{ lastMessage ? lastMessage : tooltip }}
</p>
</div>
</template>

<style scoped>
</style>
<script lang="ts">
import { messagesStorefrom '../Messages'
import { setModal } from './MiddleModal.vue';
Expand Down Expand Up @@ -42,9 +46,3 @@ export default defineComponent({
}
})
</script>

<style scoped>
.tshadow {
text-shadow: 0 0 2px rgb(0, 0, 0, 0.6);
}
</style>

0 comments on commit e67732a

Please sign in to comment.