@eim-materials/eim-pc-admin-lite
Version:
该模板适用于从 0 到 1 开始搭建项目,内置基础的页面,路由和菜单展示。
38 lines (34 loc) • 592 B
text/less
.clearfix {
&:after {
content: "";
display: table;
clear: both;
}
}
.scrollBar {
&::-webkit-scrollbar-track-piece {
background: #d3dce6;
}
&::-webkit-scrollbar {
width: 6px;
}
&::-webkit-scrollbar-thumb {
background: #99a9bf;
border-radius: 20px;
}
}
.relative {
position: relative;
width: 100%;
height: 100%;
}
.layout (@direction: row, @hLayout: flex-start, @vLayout: center, @wrap: wrap) {
display: flex;
direction: @direction;
justify-content: @hLayout;
align-items: @vLayout;
flex-wrap: @wrap;
}
div:focus {
outline: 0;
}