Skip to content

Commit

Permalink
badge: change location of status badge
Browse files Browse the repository at this point in the history
Signed-off-by: smallkirby <ssmallkirby@gmail.com>
  • Loading branch information
smallkirby committed Oct 24, 2023
1 parent 43c81f7 commit 0b744b8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/Challenge.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@
<div class="title" @click="onClickTitle">
<span class="title-name">{{challenge.name}}</span>
<span class="points"> {{challenge.value}}pts </span>
<span class="status-badge" v-if="badgeUrl !== null">
<img :src="badgeUrl" />
</span>
</div>
<div class="subtitle">
{{challenge.solves}} solves -
Expand Down Expand Up @@ -62,6 +59,9 @@
<div v-if="author" class="author">
<span class="author-name">Author: {{author}}</span>
</div>
<div class="server-status" v-if="badgeUrl !== null">
<img :src="badgeUrl" />
</div>
</div>
<div class="description">
<!-- eslint-disable vue/no-v-html -->
Expand Down

0 comments on commit 0b744b8

Please sign in to comment.