1
0
mirror of synced 2024-11-23 22:41:01 +01:00

Make User Cards the same height per row

This commit is contained in:
shiibe 2024-10-24 19:23:41 -04:00
parent 81acfcf38a
commit ef526caeee
2 changed files with 8 additions and 1 deletions

View File

@ -9,7 +9,7 @@
@if (User is not null)
{
<MudCard Outlined="true">
<MudCard Outlined="true" Class="user-card">
<MudCardHeader>
<CardHeaderContent>
<div style="display:flex;flex-wrap:wrap;align-items:center;gap:5px;">

View File

@ -299,4 +299,11 @@ tr.is-current-user p {
.mud-breadcrumb-item.mud-disabled a,
.mud-breadcrumb-separator span {
color: rgba(255, 255, 255, 0.6);
}
.user-card {
display: flex;
flex-direction: column;
justify-content: space-between;
height: 100%;
}