Compare commits
2 commits
9bd627198c
...
8efc40eb95
| Author | SHA1 | Date | |
|---|---|---|---|
| 8efc40eb95 | |||
| 695c9d26ae |
2 changed files with 16 additions and 3 deletions
|
|
@ -82,3 +82,16 @@ export default class App extends Vue {
|
||||||
private ticker_html = "<p>changeme</p>";
|
private ticker_html = "<p>changeme</p>";
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
/* Hide scrollbar for Chrome, Safari and Opera */
|
||||||
|
body::-webkit-scrollbar {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Hide scrollbar for IE, Edge and Firefox */
|
||||||
|
body {
|
||||||
|
-ms-overflow-style: none; /* IE and Edge */
|
||||||
|
scrollbar-width: none; /* Firefox */
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<v-divider class="mb-2" />
|
<v-divider class="my-3" />
|
||||||
<div class="d-flex flex-column align-end blue-grey--text text-body-2">
|
<div class="d-flex flex-column align-end blue-grey--text text-body-2">
|
||||||
<span class="d-flex">
|
<span class="d-flex thw-heading-font">
|
||||||
ovdashboard powered by
|
ovdashboard powered by
|
||||||
<a class="blue-grey--text" :href="server_host">{{ server_name }}</a>
|
<a class="blue-grey--text" :href="server_host">{{ server_name }}</a>
|
||||||
</span>
|
</span>
|
||||||
<span class="d-flex">
|
<span class="d-flex thw-heading-font">
|
||||||
Version: {{ version }} – IP: {{ lan_ip ? lan_ip : "?" }}
|
Version: {{ version }} – IP: {{ lan_ip ? lan_ip : "?" }}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue