Skip to content

Commit 71df369

Browse files
Nyx128timon-schelling
authored andcommitted
fixed breadcrumb ui minor edge rounding
1 parent 77099e9 commit 71df369

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

frontend/src/components/widgets/buttons/BreadcrumbTrailButtons.svelte

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@
2727
position: relative;
2828
2929
&:not(:first-child) {
30-
margin-left: 0px;
30+
margin-left: -2px;
3131
}
3232
33-
clip-path: polygon(0% 0%, calc(100% - 4px) 0%, 100% 50%, calc(100% - 4px) 100%, 0% 100%, 4px 50%);
33+
clip-path: polygon(2px 0%, calc(100% - 4px) 0%, 100% 50%, calc(100% - 4px) 100%, 2px 100%, 6px 50%);
3434
padding-left: 12px;
3535
padding-right: 12px;
3636
@@ -41,7 +41,7 @@
4141
}
4242
4343
&:last-of-type {
44-
clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 4px 50%);
44+
clip-path: polygon(2px 0%, 100% 0%, 100% 100%, 2px 100%, 6px 50%);
4545
padding-left: 12px;
4646
padding-right: 8px;
4747

0 commit comments

Comments
 (0)