fix(ui) icon in options button with empty span gets moved to the side

This commit is contained in:
ArneBo 2025-01-15 11:09:01 +01:00
parent c443593619
commit 0bdb026cf1
2 changed files with 10 additions and 1 deletions

View File

@ -3,7 +3,13 @@ import Button from '../Button.vue'
</script>
<template>
<Button icon="bi-three-dots-vertical" class="options-button" color="secondary" variant="ghost" />
<Button
icon="bi-three-dots-vertical"
class="options-button"
secondary
raised
round
/>
</template>
<style lang="scss">

View File

@ -4,5 +4,8 @@
transition: all .2s ease;
font-size: 0.6rem !important;
padding: 0.6em !important;
span {
display: none;
}
}
}