added new icons
This commit is contained in:
@@ -122,7 +122,7 @@
|
||||
<th class="text-center map" scope="col">Map</th>
|
||||
<th class="text-center rank" scope="col">Rank</th>
|
||||
<th class="text-center length" scope="col" title="Match Length">
|
||||
<i class="far fa-clock"></i>
|
||||
<img class="match-len" src="../assets/images/icons/timer_both.svg" alt="Match length">
|
||||
</th>
|
||||
<th class="text-center score" scope="col">Score</th>
|
||||
<th class="text-center kills" scope="col">K</th>
|
||||
@@ -157,9 +157,8 @@
|
||||
class="rank-icon">
|
||||
</td>
|
||||
<td class="td-length text-center">
|
||||
<i v-if="match.max_rounds === 30 || !match.max_rounds" class="fas fa-circle text-muted"
|
||||
title="Long match"></i>
|
||||
<i v-if="match.max_rounds === 16" class="far fa-circle text-muted" title="Short match"></i>
|
||||
<img class="match-len" v-if="match.max_rounds === 30 || !match.max_rounds" src="../assets/images/icons/timer_long.svg" alt="Match long">
|
||||
<img class="match-len" v-if="match.max_rounds === 16" src="../assets/images/icons/timer_short.svg" alt="Match short">
|
||||
</td>
|
||||
<td :class="match.stats.team_id === match.match_result ? 'text-success' : !match.match_result ? 'text-warning' : 'text-danger'"
|
||||
class="td-score text-center fw-bold">
|
||||
@@ -637,6 +636,11 @@ table {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.match-len {
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
}
|
||||
|
||||
.td-map {
|
||||
position: relative;
|
||||
padding-left: 3rem;
|
||||
|
||||
Reference in New Issue
Block a user