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>
|
||||
|
||||
<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>
|
||||
|
|
Loading…
Reference in a new issue