vue-ant-patterns
Version:
vue-ant-patterns
45 lines (44 loc) • 1.14 kB
CSS
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
/*
命名规则, 三部分 className
.flex-侧轴
.flex-主轴
.flex-侧轴-主轴
*/
.depot-header-menu {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
margin-left: -5px;
margin-right: 10px;
}
.depot-header-menu .icon-button {
width: 32px;
color: rgba(255, 255, 255, 0.85);
}
.depot-header-menu .menu {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
color: rgba(255, 255, 255, 0.85);
cursor: pointer;
}
.depot-header-menu .menu:hover {
color: #0275fd;
}
.depot-header-menu .ant-dropdown-trigger {
line-height: 1;
}