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