Reduce min loading duration for client (#900)

This commit is contained in:
Leendert de Borst
2025-06-11 14:35:02 +02:00
committed by Leendert de Borst
parent d66dee3583
commit a3208e72bf
3 changed files with 14 additions and 26 deletions

View File

@@ -297,7 +297,7 @@
/// <returns></returns>
private async Task ManualRefresh()
{
LoadingService.StartLoading("recentemails", 500, StateHasChanged);
LoadingService.StartLoading("recentemails", 300, StateHasChanged);
StateHasChanged();
CloseEmailModal();
await LoadRecentEmailsAsync();

View File

@@ -107,7 +107,7 @@ else
private async Task RefreshData()
{
LoadingService.StartLoading("emails", 500, StateHasChanged);
LoadingService.StartLoading("emails", 300, StateHasChanged);
NoEmailClaims = false;
CloseEmailModal();

View File

@@ -985,6 +985,10 @@ video {
width: 5rem;
}
.w-24 {
width: 6rem;
}
.w-28 {
width: 7rem;
}
@@ -1001,10 +1005,18 @@ video {
width: 1rem;
}
.w-48 {
width: 12rem;
}
.w-5 {
width: 1.25rem;
}
.w-56 {
width: 14rem;
}
.w-6 {
width: 1.5rem;
}
@@ -1029,18 +1041,6 @@ video {
width: 100vw;
}
.w-24 {
width: 6rem;
}
.w-56 {
width: 14rem;
}
.w-48 {
width: 12rem;
}
.min-w-0 {
min-width: 0px;
}
@@ -1677,14 +1677,6 @@ video {
padding: 2rem;
}
.p-1 {
padding: 0.25rem;
}
.p-1\.5 {
padding: 0.375rem;
}
.px-2 {
padding-left: 0.5rem;
padding-right: 0.5rem;
@@ -3083,10 +3075,6 @@ video {
margin-left: 0.5rem;
}
.md\:block {
display: block;
}
.md\:inline {
display: inline;
}