mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-09-21 21:40:49 +02:00
refactor(traffic card): remove unused styling (#2168)
This commit is contained in:
parent
243390c10f
commit
4febf1902c
2 changed files with 1 additions and 6 deletions
|
@ -1,7 +1,7 @@
|
|||
<nb-list>
|
||||
<nb-list-item class="item" *ngFor="let item of frontCardData; trackBy: trackByDate">
|
||||
<span>{{ item.date }}</span>
|
||||
<span clsas="value">{{ item.value }}</span>
|
||||
<span>{{ item.value }}</span>
|
||||
<span class="delta" [class.up]="item.delta.up" [class.down]="!item.delta.up">
|
||||
<nb-icon [icon]="item.delta.up ? 'arrow-up' : 'arrow-down'" pack="eva"></nb-icon>
|
||||
{{ item.delta.value }}%
|
||||
|
|
|
@ -19,11 +19,6 @@
|
|||
}
|
||||
}
|
||||
|
||||
.value,
|
||||
.delta {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.delta {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue