add color on pause number

This commit is contained in:
Mohit Bansal 2023-02-15 12:59:06 +05:30
parent 74ce61e150
commit d7a20380e1
3 changed files with 7 additions and 1 deletions

View file

@ -40,6 +40,11 @@ textarea.form-control {
color: $unknown !important;
}
// pause number color
.text-pause {
color: $pause !important;
}
.incident a,
.bg-maintenance a {
color: inherit;

View file

@ -3,6 +3,7 @@ $danger: #dc3545;
$warning: #f8a306;
$maintenance: #1747f5;
$unknown:#e5a328;
$pause:#060047;
$link-color: #111;
$border-radius: 50rem;

View file

@ -25,7 +25,7 @@
</div>
<div class="col">
<h3>{{ $t("pauseDashboardHome") }}</h3>
<span class="num text-secondary">{{ $root.stats.pause }}</span>
<span class="num text-pause">{{ $root.stats.pause }}</span>
</div>
</div>
</div>