profile background editor panel added

This commit is contained in:
2024-11-03 23:27:45 +01:00
Unverified
parent 3604c066e7
commit 314fceb120
3 changed files with 17 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
<div class="panel">
<div class="vstack gap-3">
<h4 class="fw-bold">Profile background</h4>
</div>
</div>

View File

@@ -0,0 +1,7 @@
using Microsoft.AspNetCore.Components;
namespace WatchIt.Website.Components.Pages.UserEditPage.Panels;
public partial class ProfileBackgroundEditorPanelComponent : ComponentBase
{
}

View File

@@ -58,6 +58,11 @@
Class="h-100"/> Class="h-100"/>
</div> </div>
</div> </div>
<div class="row mt-default">
<div class="col">
<ProfileBackgroundEditorPanelComponent/>
</div>
</div>
</div> </div>
</div> </div>
</TabPanel> </TabPanel>