Add loading spinner in /blocks page

This commit is contained in:
nymkappa 2022-05-24 11:55:43 +02:00
parent b91654886a
commit 406d4101c0
No known key found for this signature in database
GPG key ID: E155910B16E8BD04
2 changed files with 7 additions and 0 deletions

View file

@ -2,6 +2,7 @@
<div class="container-xl" [class]="widget ? 'widget' : 'full-height'">
<h1 *ngIf="!widget" class="float-left" i18n="master-page.blocks">Blocks</h1>
<div *ngIf="!widget && isLoading" class="spinner-border ml-3" role="status"></div>
<div class="clearfix"></div>

View file

@ -1,3 +1,9 @@
.spinner-border {
height: 25px;
width: 25px;
margin-top: 13px;
}
.container-xl {
max-width: 1400px;
padding-bottom: 100px;