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> </script>
<template> <template>
<div class="accessBot"> <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"> <q-btn round color="primary" size="20px" class="glossy" icon="smart_toy" @click="toggleChat" />
</q-btn>
</div> </div>
</template>
<style> </template>
.accessBot {
position: fixed;
bottom: 75px;
right: 75px;
z-index: 9999;
}
</style>