fix(editor): Remove global link styling in v1 banner (#6705)

This commit is contained in:
Milorad FIlipović 2023-07-20 09:30:30 +02:00 committed by GitHub
parent c3455a4ad8
commit 76a765a151
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,7 +14,7 @@ async function dismissPermanently() {
</script> </script>
<template> <template>
<base-banner customIcon="info-circle" theme="warning" name="V1"> <base-banner customIcon="info-circle" theme="warning" name="V1" :class="$style.v1container">
<template #mainContent> <template #mainContent>
<span v-html="locale.baseText('banners.v1.message')"></span> <span v-html="locale.baseText('banners.v1.message')"></span>
<a <a
@ -30,9 +30,11 @@ async function dismissPermanently() {
</template> </template>
<style lang="scss" module> <style lang="scss" module>
.v1container {
a, a,
.link { .link {
font-weight: var(--font-weight-bold); font-weight: var(--font-weight-bold);
text-decoration: underline; text-decoration: underline;
} }
}
</style> </style>