base
This commit is contained in:
63
app/components/Header/HeaderUser.vue
Normal file
63
app/components/Header/HeaderUser.vue
Normal file
@@ -0,0 +1,63 @@
|
||||
<template>
|
||||
<div class="navbar-end">
|
||||
<ul class="menu-user">
|
||||
<li class="menu-user-item">
|
||||
<img class="img-avatar" src="/icons/avatar.svg" alt="avatar" /> <span> Nguyễn Văn Nam </span>
|
||||
<ul class="sub-menu">
|
||||
<li>Tài khoản</li>
|
||||
<li>Đăng xuất</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</template>
|
||||
<style lang="scss">
|
||||
.header {
|
||||
.menu-user {
|
||||
min-width: 180px;
|
||||
.menu-user-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 10px;
|
||||
position: relative;
|
||||
cursor: pointer;
|
||||
|
||||
&:hover {
|
||||
.sub-menu {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
}
|
||||
.img-avatar {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
border-radius: 100%;
|
||||
}
|
||||
}
|
||||
.sub-menu {
|
||||
display: none;
|
||||
position: absolute;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
background-color: #fff;
|
||||
box-shadow: 2px 2px 2px 0px #00000040;
|
||||
border-radius: 16px;
|
||||
padding: 20px 10px;
|
||||
|
||||
li {
|
||||
padding: 5px;
|
||||
& + li {
|
||||
margin-top: 0.625rem;
|
||||
}
|
||||
&:hover {
|
||||
cursor: pointer;
|
||||
background-color: var(--color-hover);
|
||||
color: #fff;
|
||||
border-radius: 5px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user