Added vade watermark to dashboard
This commit is contained in:
parent
f3c990c390
commit
31676b62b5
|
@ -1,5 +1,6 @@
|
|||
<template>
|
||||
<div :class="{dashboard: true, 'edit-mode': editMode}">
|
||||
<div @click="vade_click" class="vade">vade</div>
|
||||
<div class="editmode-tiles">
|
||||
<new-item-tile title="New Application" v-if="editMode" @click="openNewApp" />
|
||||
<new-item-tile title="New App Category" v-if="editMode" @click="openNewAppCat" />
|
||||
|
@ -106,6 +107,9 @@ export default {
|
|||
this.connection = null;
|
||||
},
|
||||
methods: {
|
||||
vade_click() {
|
||||
window.open('https://vade.5σ.com/');
|
||||
},
|
||||
connect_ws() {
|
||||
const token = localStorage.getItem("token")
|
||||
this.connection = new WebSocket("ws://localhost:8088/events/" + encodeURIComponent(token));
|
||||
|
@ -290,4 +294,14 @@ h2 svg {
|
|||
display: grid;
|
||||
grid-template-columns: repeat(4, 1fr);
|
||||
}
|
||||
.vade {
|
||||
cursor: pointer;
|
||||
font-size: 44px;
|
||||
font-weight: 900;
|
||||
color: #252525;
|
||||
text-shadow: 1px 1px rgba(0,0,0,0.15);
|
||||
position: absolute;
|
||||
bottom: 20px;
|
||||
left: 40px;
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Reference in New Issue