From 778ae98c7a4eccbd10acb353085e736873e53793 Mon Sep 17 00:00:00 2001 From: vikingowl Date: Fri, 22 Oct 2021 21:54:40 +0200 Subject: [PATCH] fixed #2 --- src/views/Match.vue | 27 ++++++++++++++++++++++----- 1 file changed, 22 insertions(+), 5 deletions(-) diff --git a/src/views/Match.vue b/src/views/Match.vue index 9424454..4e5336d 100644 --- a/src/views/Match.vue +++ b/src/views/Match.vue @@ -20,16 +20,15 @@ {{ FormatFullDate(data.matchDetails.date) }}

- Match Length: {{ data.matchDetails.max_rounds === 16 ? 'Short' : 'Long' }} - - - + {{ data.matchDetails.max_rounds === 16 ? 'Short' : 'Long' }} + Average Rank: + + Demo

@@ -222,6 +221,24 @@ export default { .rank-icon { width: 60px; + margin-right: 3px; + } + + .fas { + margin: 0 .5rem + } + + a { + font-weight: 600; + text-decoration: none; + color: var(--bs-warning) !important; + transition: all .25s; + line-height: 1rem; + + &:hover { + color: #b98d00 !important; + text-decoration: underline; + } } }