Beginning of new layout code.

Really basic 5 component setup.
This commit is contained in:
Pete Richards
2018-08-07 14:59:04 -07:00
parent 0d53898af9
commit 279e0bf29d
12 changed files with 137 additions and 14 deletions

View File

@ -0,0 +1,19 @@
<template>
<div class="MCT_Status">I'm the status bar</div>
</template>
<style lang="scss">
.MCT_Status {
position: absolute;
left: 0;
bottom: 0;
right: 0;
height: 20px;
background: black;
}
</style>
<script>
export default {
}
</script>