StatusBar.vue 223 B

1234567891011121314151617
  1. /* 状态栏 */
  2. <template>
  3. <div class='status-bar'>
  4. </div>
  5. </template>
  6. <style scoped>
  7. .status-bar{
  8. height: 4vh;
  9. background-color:#191919;
  10. margin-bottom: 0;
  11. margin-left: 0;
  12. margin-right: 0;
  13. }
  14. </style>