Moved connect to a tabbed panel
This commit is contained in:
parent
fdcc0d5275
commit
5ca9e3d053
6 changed files with 74 additions and 8 deletions
16
src/App.vue
16
src/App.vue
|
|
@ -1,7 +1,6 @@
|
|||
<template>
|
||||
<div id="app">
|
||||
<hostInput/>
|
||||
<hostDisplay/>
|
||||
<panelLeft/>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
|
@ -15,15 +14,13 @@ import Icons from 'uikit/dist/js/uikit-icons';
|
|||
UIkit.use(Icons);
|
||||
|
||||
// Import components
|
||||
import hostInput from './components/hostInput.vue'
|
||||
import hostDisplay from './components/hostDisplay'
|
||||
import panelLeft from './components/panelLeft.vue'
|
||||
|
||||
// Export main app
|
||||
export default {
|
||||
name: 'app',
|
||||
components: {
|
||||
hostInput,
|
||||
hostDisplay
|
||||
panelLeft
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
|
@ -38,6 +35,11 @@ export default {
|
|||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
text-align: left;
|
||||
padding-left: 20px;
|
||||
height: 100%
|
||||
}
|
||||
|
||||
body, html {
|
||||
height: 100%
|
||||
}
|
||||
|
||||
</style>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue