Skip to content

Commit

Permalink
💄 style(Breadcrumbs): Update UI (#730)
Browse files Browse the repository at this point in the history
  • Loading branch information
capdiem authored Aug 23, 2024
1 parent 733f8dc commit cb0165d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,7 @@
var item = Items[i];
var isLast = i == Items.Count - 1;
<MBreadcrumbsItem @key="@item"
Href="@(isLast ? null : item.Href)"
Class="text-truncate d-inline-block"
Style="max-width: 240px;">
Href="@(isLast ? null : item.Href)">
@DT(item.Text)
</MBreadcrumbsItem>
}
Expand Down
2 changes: 2 additions & 0 deletions src/Masa.Stack.Components/wwwroot/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -886,6 +886,7 @@ h1:focus {
.ms-breadcrumbs {
padding: 0 !important;
margin-left: -4px;
flex-wrap: nowrap;
}

.ms-breadcrumbs li {
Expand All @@ -910,6 +911,7 @@ h1:focus {
border-top-right-radius: 8px;
border-bottom-right-radius: 8px;
color: grey;
overflow-wrap: anywhere;
}

.m-sheet.m-card {
Expand Down

0 comments on commit cb0165d

Please sign in to comment.