mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-21 02:56:40 -08:00
fix(editor): Remove global link styling in v1 banner (#6705)
This commit is contained in:
parent
c3455a4ad8
commit
76a765a151
|
@ -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>
|
||||||
|
|
Loading…
Reference in a new issue