drip-table
Version:
A tiny and powerful enterprise-class solution for building tables.
32 lines (27 loc) • 794 B
text/less
/**
* This file is part of the drip-table project.
* @link : https://drip-table.jd.com/
* @author : renwenci (ararakikon@163.com)
* @modifier : renwenci (ararakikon@163.com)
* @copyright: Copyright (c) 2021 JD Network Technology Co., Ltd.
*/
@prefixCls: jfe-drip-table-layout-calendar;
.@{prefixCls}-container {
width: calc((100vw - 150px) / 7);
height: 380px;
border-top: 3px solid #cccccc;
display: flex;
flex-direction: column;
.@{prefixCls}-record {
flex: 1;
overflow: scroll;
overflow-x: hidden;
}
.@{prefixCls}-record::-webkit-scrollbar-track {
background: #fafafa;
}
.@{prefixCls}-record::-webkit-scrollbar {
width: 0; /* Remove scrollbar space */
background: transparent; /* Optional: just make scrollbar invisible */
}
}