mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-09 22:24:05 -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%;
|
||||
display: block;
|
||||
|
||||
hr {
|
||||
margin: 0 0 var(--spacing-xl);
|
||||
border: 1px solid var(--color-foreground-light);
|
||||
}
|
||||
|
||||
label {
|
||||
display: inline-block;
|
||||
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 {
|
||||
display: flex;
|
||||
|
||||
|
|
Loading…
Reference in a new issue