样式修改

This commit is contained in:
suncz
2024-05-09 17:19:19 +08:00
parent a5c46b28fc
commit f6d68a2701
3 changed files with 3 additions and 3 deletions

View File

@@ -3,7 +3,7 @@
overflow-x: auto;
box-sizing: border-box;
width: 98%;
max-height: 540px;
max-height: 650px;
margin: 8px auto 0 auto;
border-top: 1px solid #eaeef1;
border-left: 1px solid #eaeef1;

View File

@@ -95,7 +95,7 @@
overflow-x: auto;
box-sizing: border-box;
width: initial;
max-height: 362px;
max-height: 615px;
margin: 0 10px;
border-top: 1px solid #dadada;
border-left: 1px solid #dadada;

View File

@@ -619,7 +619,7 @@
// 动态设置高度
function dynamicSetHeight($wrapper) {
var maxHeight = $(window).height() - $wrapper.offset().top - 52;
var maxHeight = $(window).height() - $wrapper.offset().top - 62;
$wrapper.css('maxHeight', maxHeight + 'px');
}