@linkdesign/screen
Version:
屏组件库,但使用场景又不局限于屏。主要用于BI、大盘和屏
36 lines (31 loc) • 680 B
text/less
@import '../_variables';
@import '../_mixins';
.@{prefix}subscreen-title-wrapper {
display: flex;
height: 100%;
.@{prefix}subscreen-title {
height: 100%;
cursor: pointer;
transition: all .25s;
// 大盘
.modify('mode', 'dashboard', {
padding: 0 16px;
});
// 大屏
.modify('mode', 'screen', {
padding: 0 32px;
});
&.selected {
border-bottom-style: solid;
border-bottom-color: var(--screen-brand1-6);
// 大盘
.modify('mode', 'dashboard', {
border-bottom-width: 2px;
});
// 大屏
.modify('mode', 'screen', {
border-bottom-width: 4px;
});
}
}
}