Skip to content

Commit

Permalink
Fix v3 workspace design tweaks (#7437)
Browse files Browse the repository at this point in the history
* fix: branch card border radius

* fix: rm branch card header border-bottom

* fix: adjust branch listing padding

* add top border to empty branch

* added pointing arrow, fix styles

* align commit lines

* fix border-radius

---------

Co-authored-by: ndom91 <[email protected]>
  • Loading branch information
PavelLaptev and ndom91 authored Feb 27, 2025
1 parent 482d4dc commit 08ef18a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
3 changes: 2 additions & 1 deletion apps/desktop/src/components/v3/BranchCommitList.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@
position: relative;
display: flex;
flex-direction: column;
border-radius: 0 0 var(--radius-m) var(--radius-m);
border-radius: 0 0 var(--radius-ml) var(--radius-ml);
overflow: hidden;
}
</style>
9 changes: 0 additions & 9 deletions apps/desktop/src/components/v3/CommitRow.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,6 @@
border-top: 1px solid var(--clr-border-2);
}
&.last {
border-bottom-left-radius: var(--radius-ml);
border-bottom-right-radius: var(--radius-ml);
}
&.selected {
background-color: var(--clr-bg-1-muted);
}
Expand All @@ -107,10 +102,6 @@
margin-right var(--transition-medium),
opacity var(--transition-medium) 0.05s;
}
&.last.selected::before {
border-radius: 0 0 0 var(--radius-ml);
}
}
.commit-content {
Expand Down

0 comments on commit 08ef18a

Please sign in to comment.