chore: added new text style for donators

This commit is contained in:
2025-05-07 20:45:13 +02:00
parent 3c74580bed
commit 06d0fabc99
5 changed files with 18 additions and 6 deletions
+4 -2
View File
@@ -1,6 +1,6 @@
<template>
<div class="tooltip-content">
<img src="/images/icon-diamond.svg" alt="" />
<img src="/images/icon-diamond.svg" alt="diamond icon" />
<span>{{ tooltipStore.content }}</span>
</div>
</template>
@@ -20,7 +20,10 @@ export default defineComponent({
<style lang="scss" scoped>
.tooltip-content {
display: flex;
align-items: center;
gap: 0.5em;
flex-wrap: wrap;
padding: 0.5em;
border-radius: 0.25em;
@@ -34,6 +37,5 @@ export default defineComponent({
img {
vertical-align: middle;
height: 1em;
margin-right: 0.5em;
}
</style>