replaced font-awesome with fork-awesome + added replay link for match demo
All checks were successful
CSGOWTF/csgowtf/pipeline/head This commit looks good
All checks were successful
CSGOWTF/csgowtf/pipeline/head This commit looks good
This commit is contained in:
@@ -2,8 +2,7 @@
|
||||
<div class="footer bg-secondary text-center pt-4 pb-4">
|
||||
<div class="icons pb-4">
|
||||
<a aria-label="Git Link" class="gitea text-white" href="https://git.harting.dev/CSGOWTF" target="_blank">
|
||||
<!-- <i class="bi bi-github"></i>-->
|
||||
<img alt="Gitea Icon" src="../assets/images/icons/gitea.svg">
|
||||
<i class="fa fa-gitea fa-2x" aria-hidden="true"></i>
|
||||
</a>
|
||||
</div>
|
||||
<div class="text">
|
||||
@@ -31,23 +30,9 @@ export default {
|
||||
.footer {
|
||||
height: 200px;
|
||||
|
||||
img {
|
||||
width: 35px;
|
||||
height: 35px;
|
||||
.fa:hover {
|
||||
color: #609926;
|
||||
}
|
||||
|
||||
a:not(.gitea):focus,
|
||||
a:not(.gitea):hover {
|
||||
outline: none;
|
||||
box-shadow: 0 4px 2px -2px var(--bs-warning);
|
||||
}
|
||||
|
||||
.gitea:focus,
|
||||
.gitea:hover {
|
||||
outline: none;
|
||||
filter: brightness(0.4) sepia(1) hue-rotate(15deg) saturate(2);
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: .85rem;
|
||||
}
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
</ul>
|
||||
<form id="searchform" class="d-flex" @keydown.enter.prevent="parseSearch" @submit.prevent="parseSearch">
|
||||
<label for="search">
|
||||
<i class="fas fa-search"></i>
|
||||
<i class="fa fa-search"></i>
|
||||
</label>
|
||||
|
||||
<input id="search" v-model="data.searchInput" aria-label="Search"
|
||||
|
||||
@@ -15,9 +15,9 @@
|
||||
class="player__avatar">
|
||||
</td>
|
||||
<td class="player__name" @click="GoToPlayer(props.steamid64)">
|
||||
<i v-if="props.tracked" class="far fa-dot-circle text-success tracked" title="Tracked user"></i>
|
||||
<i v-if="props.tracked" class="fa fa-dot-circle-o text-success tracked" title="Tracked user"></i>
|
||||
{{ props.name }}
|
||||
<i class="fas fa-link"></i>
|
||||
<i class="fa fa-external-link"></i>
|
||||
</td>
|
||||
<td v-if="props.parsed" class="player__rank">
|
||||
<img :alt="DisplayRank(props.rank)[1]"
|
||||
@@ -261,8 +261,8 @@ export default {
|
||||
font-size: .8rem;
|
||||
}
|
||||
|
||||
.fas {
|
||||
font-size: .5rem;
|
||||
.fa-external-link {
|
||||
font-size: .8rem;
|
||||
vertical-align: top;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user