Added vade watermark to dashboard

This commit is contained in:
Joe Bellus 2022-02-12 01:41:51 -05:00
parent f3c990c390
commit 31676b62b5
2 changed files with 14 additions and 0 deletions

View File

@ -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>