Improved ProfilePill

This commit is contained in:
Mia Rose Winter 2024-01-18 12:34:32 +01:00
parent 61363179be
commit 638820e7dc
Signed by: miawinter
GPG key ID: 4B6F6A83178F595E
2 changed files with 5 additions and 5 deletions

View file

@ -1,12 +1,12 @@
@using Wave.Data @using Wave.Data
<div class="rounded bg-base-200 p-2 flex gap-4 justify-center"> <div class="rounded bg-base-200 text-base-content flex content-center w-full sm:w-56">
<div class="w-12 h-12"> <div class="w-16 h-16">
<ProfilePictureComponent ProfileId="@Profile.Id" /> <ProfilePictureComponent ProfileId="@Profile.Id" />
</div> </div>
<div class="flex flex-col"> <div class="flex flex-col p-2">
@Profile.Name <span class="truncate">@Profile.Name</span>
@if (RoleTag is not null) { @if (RoleTag is not null) {
<span class="badge badge-sm badge-primary">@RoleTag</span> <span class="badge badge-sm badge-primary">@RoleTag</span>
} }

File diff suppressed because one or more lines are too long