Skip to content
Snippets Groups Projects
Commit dc5c74da authored by Alex ORLUC's avatar Alex ORLUC
Browse files

fix css

parent bc630ff9
No related branches found
No related tags found
No related merge requests found
...@@ -21,10 +21,10 @@ ...@@ -21,10 +21,10 @@
style="display: grid;grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));gap: 20px;padding:20px;"> style="display: grid;grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));gap: 20px;padding:20px;">
<mat-card class="countCard" *ngFor="let shortcut of shortcutsAdmin" matRipple <mat-card class="countCard" *ngFor="let shortcut of shortcutsAdmin" matRipple
(click)="goToSpecifiedAdministration(shortcut)"> (click)="goToSpecifiedAdministration(shortcut)">
<div mat-card-avatar class="avatarCount"> <div mat-card-avatar class="avatarCount" style="margin-right: 10px;">
<i class="{{shortcut.style}}" style="position: absolute;"></i> <i class="{{shortcut.style}}" style="position: absolute;"></i>
</div> </div>
<span style="font-size: 40px;">{{shortcut.count}}</span> <span style="font-size: 40px;">{{shortcut.count}}</span>&nbsp;
{{shortcut.label}} {{shortcut.label}}
</mat-card> </mat-card>
</div> </div>
...@@ -37,8 +37,8 @@ ...@@ -37,8 +37,8 @@
<button mat-button *ngFor="let administration of filteredAdministrations | async | sortBy : 'label'" <button mat-button *ngFor="let administration of filteredAdministrations | async | sortBy : 'label'"
[title]="administration.comment" style="font-size:20px;height:80px;" [title]="administration.comment" style="font-size:20px;height:80px;"
(click)="goToSpecifiedAdministration(administration)"> (click)="goToSpecifiedAdministration(administration)">
<div style="display: flex;align-items: center;gap: 10px;"> <div style="display: flex;align-items: center;">
<span> <span style="padding-right: 10px;">
<i class="avatarCount2 {{administration.style}}"></i> <i class="avatarCount2 {{administration.style}}"></i>
</span> </span>
<span class="countLabel" style="white-space: initial;text-align: left;"> <span class="countLabel" style="white-space: initial;text-align: left;">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment