style: modified chat button to adhere to Quasar styling without the need for a <style> and additional css

This commit is contained in:
Lion Arar 2025-09-26 10:19:10 -04:00
parent 9bfbbb5635
commit 1a78b49193

View File

@ -7,17 +7,8 @@ const toggleChat = () => {
</script>
<template>
<div class="accessBot">
<q-btn round color="primary" size="20px" class="glossy" icon="smart_toy" @click="toggleChat">
</q-btn>
<div class="fixed-bottom-right" style="z-index: 9999; margin-bottom: 80px; margin-right: 75px;">
<q-btn round color="primary" size="20px" class="glossy" icon="smart_toy" @click="toggleChat" />
</div>
</template>
<style>
.accessBot {
position: fixed;
bottom: 75px;
right: 75px;
z-index: 9999;
}
</style>
</template>