mirror of
https://github.com/nasa/openmct.git
synced 2025-06-15 21:58:13 +00:00
Beginning of new layout code.
Really basic 5 component setup.
This commit is contained in:
19
src/ui/components/layout/MctStatus.vue
Normal file
19
src/ui/components/layout/MctStatus.vue
Normal 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>
|
Reference in New Issue
Block a user