mirror of
https://github.com/docmost/docmost.git
synced 2025-11-13 09:22:38 +10:00
24 lines
393 B
CSS
24 lines
393 B
CSS
.breadcrumbs {
|
|
display: flex;
|
|
align-items: center;
|
|
overflow: hidden;
|
|
|
|
a {
|
|
color: var(--mantine-color-default-color);
|
|
line-height: inherit;
|
|
}
|
|
|
|
.mantine-Breadcrumbs-breadcrumb {
|
|
min-width: 1px;
|
|
overflow: hidden;
|
|
}
|
|
}
|
|
|
|
.truncatedText {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
max-width: 200px;
|
|
}
|
|
|