Skip to content

Commit

Permalink
MudSimpleTable, MudTable, MudDataGrid: Fix missing border radius when…
Browse files Browse the repository at this point in the history
… using FixedHeader (MudBlazor#4212)
  • Loading branch information
Ben White authored and jammerware committed Sep 20, 2022
1 parent 032c60a commit b27ce88
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/MudBlazor/Styles/components/_simpletable.scss
Expand Up @@ -109,6 +109,10 @@
border-radius: var(--mud-default-borderradius) 0 0 0;
}

& * th:last-child {
border-radius: 0 var(--mud-default-borderradius) 0 0;
}

& * th {
background-color: var(--mud-palette-surface);
position: sticky;
Expand Down
4 changes: 4 additions & 0 deletions src/MudBlazor/Styles/components/_table.scss
Expand Up @@ -183,6 +183,10 @@
border-radius: var(--mud-default-borderradius) 0px 0px 0px;
}

& * .mud-table-cell:last-child {
border-radius: 0px var(--mud-default-borderradius) 0px 0px;
}

& * .mud-table-cell {
background-color: var(--mud-palette-surface);
position: sticky;
Expand Down

0 comments on commit b27ce88

Please sign in to comment.