diff --git a/packages/client/src/components/MkUrlPreview.vue b/packages/client/src/components/MkUrlPreview.vue index 73938cf86..29d045ebf 100644 --- a/packages/client/src/components/MkUrlPreview.vue +++ b/packages/client/src/components/MkUrlPreview.vue @@ -255,7 +255,7 @@ onUnmounted(() => { margin-bottom: 0.2em; text-decoration: underline; text-decoration-color: transparent; - transition: text-decoration-color .2s; + transition: text-decoration-color 0.2s; } p { margin-bottom: -0.5em; diff --git a/packages/client/src/components/global/MkUrl.vue b/packages/client/src/components/global/MkUrl.vue index 3453bf5ed..6e50c851e 100644 --- a/packages/client/src/components/global/MkUrl.vue +++ b/packages/client/src/components/global/MkUrl.vue @@ -75,13 +75,11 @@ const target = self ? null : "_blank"; diff --git a/packages/client/src/style.scss b/packages/client/src/style.scss index 7f3713881..a53f47f14 100644 --- a/packages/client/src/style.scss +++ b/packages/client/src/style.scss @@ -147,7 +147,7 @@ a { -webkit-tap-highlight-color: transparent; text-decoration: underline; text-decoration-color: transparent; - transition: text-decoration-color .2s; + transition: text-decoration-color 0.2s; &:hover { text-decoration-color: currentColor; } @@ -635,24 +635,25 @@ hr { ._link { position: relative; color: var(--link); - text-decoration: none !important; - &::before, &::after { - content: ""; - position: absolute; - bottom: 0; - left: 0; - width: 0%; - border-bottom: 1px solid currentColor; - transition: 0.3s ease-in-out; - } - &::before { - width: 100%; - opacity: .4; - } - &:hover:after, &:focus:after { - width: 100%; - } + // &::before, + // &::after { + // content: ""; + // position: absolute; + // bottom: 0; + // left: 0; + // width: 0%; + // border-bottom: 1px solid currentColor; + // transition: 0.3s ease-in-out; + // } + // &::before { + // width: 100%; + // opacity: 0.4; + // } + // &:hover:after, + // &:focus:after { + // width: 100%; + // } } ._caption {