Skip to content

Commit 22ebf9e

Browse files
TenzDelekovflowd
andauthored
fix: added ellipsis for long content in breadcrumb (#6794)
* fix:added ellipsis for long value in breadcrumb * changes js to css logic * removed double truncate * removed unneccesary comments and further minor changes * Update components/Common/Breadcrumbs/BreadcrumbLink/index.module.css Signed-off-by: Claudio W <[email protected]> * draft changes * pl to px * increase the px from 2 to 6 --------- Signed-off-by: Claudio W <[email protected]> Co-authored-by: Claudio W <[email protected]>
1 parent 96192d6 commit 22ebf9e

File tree

3 files changed

+17
-6
lines changed

3 files changed

+17
-6
lines changed

apps/site/components/Common/Breadcrumbs/BreadcrumbItem/index.module.css

+11-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
.item {
22
@apply flex
3-
items-center
4-
gap-5
5-
text-sm
6-
font-medium;
3+
max-w-fit
4+
items-center
5+
gap-5
6+
truncate
7+
text-sm
8+
font-medium;
9+
10+
&:last-child {
11+
@apply w-full;
12+
}
713

814
a {
915
@apply flex-shrink
@@ -23,6 +29,7 @@
2329

2430
.separator {
2531
@apply size-4
32+
max-w-fit
2633
flex-shrink-0
2734
flex-grow
2835
text-neutral-600

apps/site/components/Common/Breadcrumbs/BreadcrumbLink/index.module.css

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
.link {
2+
@apply max-w-fit
3+
truncate;
4+
25
&.active {
36
@apply rounded
47
bg-green-600
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
.list {
22
@apply flex
3-
items-center
4-
gap-5;
3+
w-full
4+
gap-5
5+
px-6;
56
}

0 commit comments

Comments
 (0)