@@ -4,8 +4,12 @@
<HcLottie v-if="isType === 'delete'" type="delete" style="height: 200px" />
<HcLottie v-if="isType === 'warning'" type="warning" style="height: 140px" />
</div>
- <div class="title">{{ titles }}</div>
- <div class="text">{{ text }}</div>
+ <div class="title">
+ {{ titles }}
+ </div>
+ <div class="text">
+ {{ text }}
</template>
@@ -68,4 +72,17 @@ const texts = ref(props.text)
margin-bottom: 10px;
}
+html.dark {
+ .title {
+ position: relative;
+ font-size: 20px;
+ color:white;
+ margin-bottom: 20px;
+ }
+ .text {
+ font-size: 14px;
+ margin-bottom: 10px;
+}
</style>