mirror of
https://github.com/iczer/vue-antd-admin
synced 2025-04-06 04:00:06 +08:00
修改:调整顶部小组件样式,解决组件垂直对齐的问题;
This commit is contained in:
parent
3392beaa84
commit
54c130a1b0
src/layouts
@ -68,17 +68,6 @@ export default {
|
||||
color: #1890ff;
|
||||
}
|
||||
}
|
||||
.header-item{
|
||||
padding: 0 12px;
|
||||
display: inline-block;
|
||||
height: 100%;
|
||||
cursor: pointer;
|
||||
vertical-align: middle;
|
||||
i{
|
||||
font-size: 16px;
|
||||
color: rgba(0,0,0,.65);
|
||||
}
|
||||
}
|
||||
.global-header{
|
||||
padding: 0 12px 0 0;
|
||||
-webkit-box-shadow: 0 1px 4px rgba(0,21,41,.08);
|
||||
@ -129,10 +118,20 @@ export default {
|
||||
}
|
||||
.global-header-right{
|
||||
float: right;
|
||||
display: flex;
|
||||
&.dark{
|
||||
color: #fff;
|
||||
a, i{
|
||||
color: #fff !important;
|
||||
}
|
||||
}
|
||||
.header-item{
|
||||
padding: 0 12px;
|
||||
cursor: pointer;
|
||||
align-self: center;
|
||||
i{
|
||||
color: #fff;
|
||||
font-size: 16px;
|
||||
color: rgba(0,0,0,.65);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,9 +1,9 @@
|
||||
<template>
|
||||
<a-dropdown class="header-avatar">
|
||||
<span style="cursor: pointer">
|
||||
<a-avatar class="avatar" size="small" shape="circle" :src="user.avatar"/>
|
||||
<span>{{user.name}}</span>
|
||||
</span>
|
||||
<a-dropdown>
|
||||
<div class="header-avatar" style="cursor: pointer">
|
||||
<a-avatar class="avatar" :size="30" shape="circle" :src="user.avatar"/>
|
||||
<span class="name">{{user.name}}</span>
|
||||
</div>
|
||||
<a-menu :class="['avatar-menu']" slot="overlay">
|
||||
<a-menu-item>
|
||||
<a-icon type="user" />
|
||||
@ -38,17 +38,19 @@ export default {
|
||||
|
||||
<style lang="less">
|
||||
.header-avatar{
|
||||
display: inline-block;
|
||||
height: 100%;
|
||||
vertical-align: initial;
|
||||
}
|
||||
.avatar{
|
||||
margin: 20px 4px 20px 0;
|
||||
color: #1890ff;
|
||||
background: hsla(0,0%,100%,.85);
|
||||
vertical-align: middle;
|
||||
display: inline-flex;
|
||||
.avatar, .name{
|
||||
align-self: center;
|
||||
}
|
||||
.avatar{
|
||||
margin-right: 8px;
|
||||
}
|
||||
.name{
|
||||
font-weight: 500;
|
||||
}
|
||||
}
|
||||
.avatar-menu{
|
||||
width: 150px;
|
||||
}
|
||||
|
||||
</style>
|
||||
|
Loading…
x
Reference in New Issue
Block a user