Files
legio-30/src/app/components/logo/logo.component.html
ztimson dfa0c29098
All checks were successful
Build Website / Build NPM Project (push) Successful in 2m29s
Build Website / Tag Version (push) Successful in 38s
Build Website / Build & Push Dockerfile (push) Successful in 3m46s
Added resource page, updated icons, and more
2024-02-21 22:41:53 -05:00

11 lines
616 B
HTML

<div class="logo d-flex align-items-center">
<img src="assets/img/favicon.svg" class="me-2" alt="SPQR" style="height: 2.5rem; width: auto; filter: brightness(100%)">
<div class="d-inline-flex" aria-label="Legio XXX" style="font-family: Serif; font-weight: lighter">
<div>L</div>
<div [@slide]="expand ? 'expand' : 'shrink'" style="overflow: hidden">EGIO · </div>
<div [@margin]="expand ? 'expand' : 'shrink'" [style.marginLeft]="expand ? '0.25rem' : 0">XXX</div>
<div *ngIf="loading">{{dots | async}}</div>
</div>
<div *ngIf="loadingText" class="logo-footer text-center">{{loadingText}}</div>
</div>