diff --git a/src/assets/style/timi-web.less b/src/assets/style/timi-web.less
index 2a759c9..3766162 100644
--- a/src/assets/style/timi-web.less
+++ b/src/assets/style/timi-web.less
@@ -24,6 +24,7 @@
html {
cursor: var(--tui-cur-default);
+ text-underline-offset: .16rem;
}
body {
@@ -130,7 +131,7 @@ textarea {
// 模糊玻璃效果:白色
.glass-white {
color: var(--eui-black, #000);
- background: rgba(255, 255, 255, .8);
+ background: rgba(255, 255, 255, .6);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
}
@@ -138,7 +139,7 @@ textarea {
// 模糊玻璃效果:黑色
.glass-black {
color: var(--eui-white, #FFF);
- background: rgba(0, 0, 0, .8);
+ background: rgba(0, 0, 0, .6);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
}
diff --git a/src/components/contact-number/index.ts b/src/components/contact-number/index.ts
new file mode 100644
index 0000000..9229032
--- /dev/null
+++ b/src/components/contact-number/index.ts
@@ -0,0 +1,5 @@
+import view from "./index.vue";
+import Toolkit from "../../utils/Toolkit";
+
+export const ContactNumber = Toolkit.withInstall(view);
+export default ContactNumber;
diff --git a/src/components/contact-number/index.vue b/src/components/contact-number/index.vue
new file mode 100644
index 0000000..2d378ac
--- /dev/null
+++ b/src/components/contact-number/index.vue
@@ -0,0 +1,101 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/components/index.ts b/src/components/index.ts
index 4fec8d0..e3ceda5 100644
--- a/src/components/index.ts
+++ b/src/components/index.ts
@@ -10,6 +10,7 @@ import MarkdownView from "./markdown-view";
import BEFlowerFall from "./background-effect/flower-fall";
import MarkdownEditor from "./markdown-editor";
import PassTimeLabel from "./passtime-label";
+import ContactNumber from "./contact-number";
export default [
Icon,
@@ -22,7 +23,8 @@ export default [
MarkdownView,
BEFlowerFall,
MarkdownEditor,
- PassTimeLabel
+ PassTimeLabel,
+ ContactNumber
];
export {
@@ -36,5 +38,6 @@ export {
MarkdownView,
BEFlowerFall,
MarkdownEditor,
- PassTimeLabel
+ PassTimeLabel,
+ ContactNumber
};
diff --git a/src/components/passtime-label/index.vue b/src/components/passtime-label/index.vue
index 6a1f069..252f808 100644
--- a/src/components/passtime-label/index.vue
+++ b/src/components/passtime-label/index.vue
@@ -57,7 +57,6 @@ function toggle(): void {
&.underline {
text-decoration: underline;
- text-underline-offset: .16rem;
}
}