26 lines
464 B
Vue
26 lines
464 B
Vue
<template>
|
|
<div class="home-bar">
|
|
<div class="nav"></div>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
.home-bar {
|
|
width: 100%;
|
|
height: 34px;
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
|
|
.nav {
|
|
height: 5px;
|
|
width: 136px;
|
|
margin-top: 23px;
|
|
background-color: var(--ipone-bottom-bar);
|
|
border-radius: 143px;
|
|
}
|
|
}
|
|
</style> |