summaryrefslogtreecommitdiff
path: root/src/views/Control/Kvm/Kvm.vue
blob: 66b2e5f7f6d8b295849b89fe034f9e8cf134e942 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<template>
  <b-container fluid="xl">
    <page-title />
    <div class="terminal-container">
      <kvm-console :is-full-window="false" />
    </div>
  </b-container>
</template>

<script>
import PageTitle from '@/components/Global/PageTitle';
import KvmConsole from './KvmConsole';

export default {
  name: 'Kvm',
  components: { PageTitle, KvmConsole }
};
</script>

<style scoped>
.button-launch > svg {
  height: 25px;
}
.button-launch {
  padding-left: 0px;
}

.terminal-container {
  width: 100%;
}
</style>