mirror of
https://gitee.com/baidu/amis.git
synced 2024-12-02 12:08:13 +08:00
cac01a3018
Change-Id: I06342cb12229885daf8e6fa2978f4e49ea0c49a2
40 lines
641 B
SCSS
40 lines
641 B
SCSS
.aeDataChain {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: nowrap;
|
|
min-height: 300px;
|
|
|
|
&-aside {
|
|
width: 60px;
|
|
flex-shrink: 0;
|
|
border-right: 1px solid #ccc;
|
|
margin-right: 10px;
|
|
padding-right: 10px;
|
|
|
|
> ul {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
|
|
> li {
|
|
display: block;
|
|
cursor: pointer;
|
|
text-align: center;
|
|
color: #999;
|
|
padding: 2px 5px;
|
|
font-size: 12px;
|
|
|
|
&.is-active {
|
|
color: #333;
|
|
background: darken(#f6f7fb, 2.5%);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
&-main {
|
|
flex-grow: 1;
|
|
flex-basis: auto;
|
|
}
|
|
}
|