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:
Csaba Tuncsik
2023-06-07 11:37:59 +02:00
committed by GitHub
parent 9396e7eb58
commit cc37f21aa2

View File

@@ -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;