made statuspage universal

updated angular to v10
added renovate.json
updated .drone.yml
added arm image
This commit is contained in:
Samuel Philipp 2020-07-05 20:19:52 +02:00
parent 8b89e10cc3
commit a580a2ee6b
15 changed files with 261 additions and 106 deletions

View file

@ -10,7 +10,14 @@
<footer>
<div class="container">
Made with <span class="fas fa-heart"></span> by <a href="https://sp-codes.de">sp-codes</a>
<div class="row">
<div class="col-12 col-sm-6">
Powered by <a href="https://git.sp-codes.de/samuel-p/universal-statuspage">universal-statuspage</a>
</div>
<div class="col-12 col-sm-6 text-sm-right">
Made with <span class="fas fa-heart"></span> by <a href="https://sp-codes.de">sp-codes</a>
</div>
</div>
</div>
</footer>
</div>

View file

@ -11,7 +11,7 @@
<a *ngFor="let service of group.services; last as last" mat-list-item [href]="service.url" target="_blank">
<div matLine class="d-flex">
<i [class]="stateClasses[service.state]"></i>
<span>{{service.name}}</span>
<span class="text-truncate">{{service.name}}</span>
<span class="flex-grow-1"></span>
<span class="text-capitalize {{service.state}}">{{service.state}}</span>
</div>