Skip to content

Commit

Permalink
fix(editor): Remove root level tag selector from css module to avoid …
Browse files Browse the repository at this point in the history
…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
  • Loading branch information
cstuncsik authored Jun 7, 2023
1 parent 9396e7e commit cc37f21
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/editor-ui/src/views/SettingsVersionControl.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down Expand Up @@ -443,11 +448,6 @@ const refreshBranches = async () => {
}
}
hr {
margin: 0 0 var(--spacing-xl);
border: 1px solid var(--color-foreground-light);
}
.branchSelection {
display: flex;
Expand Down

0 comments on commit cc37f21

Please sign in to comment.