mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
fix(editor): Remove root level tag selector from css module to avoid making it a global style (#6392)
* fix(editor): Remove root level tag selector from css module to avoid making it a global style * trigger CI
This commit is contained in:
parent
9396e7eb58
commit
cc37f21aa2
|
@ -384,6 +384,11 @@ const refreshBranches = async () => {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
display: block;
|
display: block;
|
||||||
|
|
||||||
|
hr {
|
||||||
|
margin: 0 0 var(--spacing-xl);
|
||||||
|
border: 1px solid var(--color-foreground-light);
|
||||||
|
}
|
||||||
|
|
||||||
label {
|
label {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
padding: 0 0 var(--spacing-2xs);
|
padding: 0 0 var(--spacing-2xs);
|
||||||
|
@ -443,11 +448,6 @@ const refreshBranches = async () => {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
hr {
|
|
||||||
margin: 0 0 var(--spacing-xl);
|
|
||||||
border: 1px solid var(--color-foreground-light);
|
|
||||||
}
|
|
||||||
|
|
||||||
.branchSelection {
|
.branchSelection {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue