This commit is contained in:
chiayin
2023-06-17 13:52:42 +08:00
parent af1f8f3016
commit a6fa85938b
5 changed files with 19 additions and 6 deletions

View File

@@ -1,6 +1,16 @@
<template>
<h1>Status bar</h1>
<section class=" bg-primary text-center">
<!-- status content -->
<div></div>
<!-- control button -->
<div class="bg-neutral-300 inline-block rr">
<!-- 面板開啟: 箭頭朝上 -->
<span class="material-symbols-outlined block px-8 text-xs ">keyboard_double_arrow_up</span>
<!-- 面板收合: 箭頭朝下 -->
<!-- <span class="material-symbols-outlined block px-8 text-xs">keyboard_double_arrow_down</span> -->
</div>
</section>
</template>
<script>
@@ -8,3 +18,8 @@ export default {
}
</script>
<style>
.rr {
border-radius: 0px 0px 999px 999px;
}
</style>