1
0
mirror of synced 2024-11-24 06:50:15 +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) @if (User is not null)
{ {
<MudCard Outlined="true"> <MudCard Outlined="true" Class="user-card">
<MudCardHeader> <MudCardHeader>
<CardHeaderContent> <CardHeaderContent>
<div style="display:flex;flex-wrap:wrap;align-items:center;gap:5px;"> <div style="display:flex;flex-wrap:wrap;align-items:center;gap:5px;">

View File

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