This commit is contained in:
Viet An
2026-06-04 16:12:51 +07:00
parent 2a1f85c2af
commit 3cfa103306
19 changed files with 106 additions and 106 deletions

View File

@@ -9,7 +9,7 @@
</span>
<p
v-html="content"
class="control is-expanded"
class="control is-expanded fs-14"
></p>
</div>
</template>

View File

@@ -1,5 +1,8 @@
<template>
<p v-html="props.content"></p>
<p
v-html="props.content"
class="fs-14"
></p>
</template>
<script setup>
const props = defineProps({

View File

@@ -13,7 +13,9 @@ setTimeout(() => store.commit("snackbar", undefined), 3900);
</script>
<template>
<div class="snackbar is-flex is-align-items-center is-gap-3 pl-3 pr-1.5 py-2 rounded-md has-text-white">
<div
class="snackbar is-flex is-justify-content-space-between is-align-items-center is-gap-3 pl-3 pr-1.5 py-2 rounded-md has-text-white"
>
<Info
v-if="component === 'Info'"
v-bind="vbind"
@@ -47,13 +49,13 @@ setTimeout(() => store.commit("snackbar", undefined), 3900);
.snackbar {
position: fixed;
z-index: 999;
top: 50px;
top: 40px;
left: 0;
right: 0;
margin-inline: auto;
width: fit-content;
max-width: 500px;
background-color: hsl(from var(--bulma-grey-darker) h s l / 0.9);
max-width: min(500px, 90vw);
background-color: hsl(from var(--bulma-grey-darker) h s l / 0.85);
}
.button.is-ghost {

View File

@@ -9,7 +9,7 @@
</span>
<p
v-html="content"
class="control is-expanded"
class="control is-expanded fs-14"
></p>
</div>
</template>