1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
| /*div {
| color: #fff;
| height: 300px;
| overflow-y: auto;
| overflow-x: hidden;
| }*/
| .spacer {
| height: 10px;
| /* 设置合适的高度来隔开上下两个模块 */
| }
| /*.container {
| width: 1200px;
| height: 1000px;
| .uiModal--medium .modal-container
| }*/
| /* .modal-container.slds-modal__container{
| min-width: 1200px;
| max-width: 1200px;
| width: 100%;
| }*/
| .scrollable-table {
| width: 100%; /* 可根据需要调整宽度 */
| overflow-x: auto; /* 启用水平滚动条 */
| white-space: nowrap; /* 防止文本换行 */
| }
|
|