mirror of
https://github.com/danbulant/Nertivia-Client
synced 2026-06-18 14:01:12 +00:00
added cursor: pointer to some places.
This commit is contained in:
parent
a0f4f72319
commit
a3eb9edae7
2 changed files with 27 additions and 5 deletions
|
|
@ -185,6 +185,7 @@ export default {
|
|||
position: relative;
|
||||
align-items: center;
|
||||
padding: 5px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.server-name {
|
||||
|
|
|
|||
|
|
@ -9,11 +9,14 @@
|
|||
</div>
|
||||
<div class="bottom">
|
||||
<div class="description">{{server.description}}</div>
|
||||
<div class="button" :class="{selected: joined}" @click="joinButton">
|
||||
<span v-if="joined">Joined</span>
|
||||
<spinner v-else-if="joinClicked" :size="30"/>
|
||||
<span v-else-if="!joinClicked">Join Server</span>
|
||||
</div>
|
||||
<div class="buttons">
|
||||
<div class="verified" v-if="server.verified"><div class="material-icons">check</div> Verified</div>
|
||||
<div class="button" :class="{selected: joined}" @click="joinButton">
|
||||
<span v-if="joined">Joined</span>
|
||||
<spinner v-else-if="joinClicked" :size="30"/>
|
||||
<span v-else-if="!joinClicked">Join Server</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
|
@ -113,6 +116,24 @@ export default {
|
|||
word-break: break-word;
|
||||
white-space: pre-wrap;
|
||||
overflow-wrap: anywhere;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
.buttons {
|
||||
display: flex;
|
||||
width: 100%;
|
||||
justify-content: flex-end;
|
||||
}
|
||||
.verified {
|
||||
display: flex;
|
||||
width: 100%;
|
||||
margin-left: 10px;
|
||||
align-content: center;
|
||||
align-items: center;
|
||||
align-self: center;
|
||||
margin-bottom: 5px;
|
||||
.material-icons {
|
||||
margin-right: 5px;
|
||||
}
|
||||
}
|
||||
.button {
|
||||
display: flex;
|
||||
|
|
|
|||
Loading…
Reference in a new issue