mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
fix(editor): Fix unwanted side effects from tailwind components (no-changelog) (#9359)
This commit is contained in:
parent
c92c870c73
commit
aa397b9730
|
@ -519,7 +519,7 @@ function goToUpgrade() {
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="container">
|
<div :class="$style.container">
|
||||||
<BreakpointsObserver :value-x-s="15" :value-s-m="25" :value-m-d="50" class="name-container">
|
<BreakpointsObserver :value-x-s="15" :value-s-m="25" :value-m-d="50" class="name-container">
|
||||||
<template #default="{ value }">
|
<template #default="{ value }">
|
||||||
<ShortenName
|
<ShortenName
|
||||||
|
@ -665,14 +665,6 @@ function goToUpgrade() {
|
||||||
$--text-line-height: 24px;
|
$--text-line-height: 24px;
|
||||||
$--header-spacing: 20px;
|
$--header-spacing: 20px;
|
||||||
|
|
||||||
.container {
|
|
||||||
position: relative;
|
|
||||||
top: -1px;
|
|
||||||
width: 100%;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.name-container {
|
.name-container {
|
||||||
margin-right: $--header-spacing;
|
margin-right: $--header-spacing;
|
||||||
}
|
}
|
||||||
|
@ -729,6 +721,14 @@ $--header-spacing: 20px;
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<style module lang="scss">
|
<style module lang="scss">
|
||||||
|
.container {
|
||||||
|
position: relative;
|
||||||
|
top: -1px;
|
||||||
|
width: 100%;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
.group {
|
.group {
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: var(--spacing-xs);
|
gap: var(--spacing-xs);
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="container">
|
<div :class="$style.container">
|
||||||
<el-col class="notags" :span="16">
|
<el-col class="notags" :span="16">
|
||||||
<div class="icon">🗄️</div>
|
<div class="icon">🗄️</div>
|
||||||
<div>
|
<div>
|
||||||
|
@ -25,7 +25,7 @@ export default defineComponent({
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" module>
|
||||||
$--footer-spacing: 45px;
|
$--footer-spacing: 45px;
|
||||||
|
|
||||||
.container {
|
.container {
|
||||||
|
@ -34,7 +34,9 @@ $--footer-spacing: 45px;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
margin-top: $--footer-spacing;
|
margin-top: $--footer-spacing;
|
||||||
}
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
.notags {
|
.notags {
|
||||||
word-break: normal;
|
word-break: normal;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
|
Loading…
Reference in a new issue