changes
This commit is contained in:
@@ -9,7 +9,7 @@
|
||||
</span>
|
||||
<p
|
||||
v-html="content"
|
||||
class="control is-expanded"
|
||||
class="control is-expanded fs-14"
|
||||
></p>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@@ -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({
|
||||
|
||||
@@ -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 {
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
</span>
|
||||
<p
|
||||
v-html="content"
|
||||
class="control is-expanded"
|
||||
class="control is-expanded fs-14"
|
||||
></p>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
Reference in New Issue
Block a user