update ui and add notice collect dialog

This commit is contained in:
zyronon
2023-12-07 00:06:36 +08:00
parent 1b76c57a5a
commit 224d9473ca
13 changed files with 238 additions and 20 deletions

View File

@@ -104,6 +104,7 @@ onUnmounted(() => {
padding: 3rem var(--space) 6rem var(--space);
z-index: 2;
border: 1px solid var(--color-item-border);
box-shadow: var(--shadow);
.stat {
margin-top: 8rem;

View File

@@ -272,6 +272,7 @@ $header-height: 50rem;
transition: all .3s;
z-index: 1;
border: 1px solid var(--color-item-border);
box-shadow: var(--shadow);
& > header {

View File

@@ -1,6 +1,8 @@
<script setup lang="ts">
import {splitEnArticle} from "@/hooks/article.ts";
import BaseButton from "@/components/BaseButton.vue";
import {useSettingStore} from "@/stores/setting.ts";
let data = {
"title": "A cold welcome",
@@ -25,14 +27,21 @@ let data = {
// "id": "TdAAqD"
// }
splitEnArticle(data.text)
const settingStore = useSettingStore()
</script>
<template>
<div>
<div class="page">
test
<BaseButton @click="settingStore.load = !settingStore.load">test</BaseButton>
</div>
</template>
<style scoped lang="scss">
.page {
position: relative;
z-index: 1;
font-size: 14rem;
color: black;
}
</style>