Skip to content

Commit

Permalink
fix(editor): fix connected collapsed paddings
Browse files Browse the repository at this point in the history
  • Loading branch information
cstuncsik committed Jun 6, 2023
1 parent 411ddd5 commit 54779df
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,10 @@ const goToVersionControlSetup = async () => {
&.isConnected {
padding-left: var(--spacing-m);
border-left: var(--spacing-3xs) var(--border-style-base) var(--color-foreground-base);
&.collapsed {
padding-left: var(--spacing-xs);
}
}
&:empty {
Expand All @@ -200,7 +204,7 @@ const goToVersionControlSetup = async () => {
.collapsed {
text-align: center;
padding-left: var(--spacing-xs);
padding-left: var(--spacing-s);
padding-right: var(--spacing-s);
.connected {
Expand Down

0 comments on commit 54779df

Please sign in to comment.