修改宽度

This commit is contained in:
wood 2023-11-09 06:15:31 +08:00
parent cf1ed818cc
commit 18425b1f44
3 changed files with 22 additions and 3 deletions

View File

@ -376,7 +376,7 @@ const LogsTable = () => {
onClick={() => {
sortLog('model_name');
}}
width={2}
width={3}
>
模型
</Table.HeaderCell>
@ -412,7 +412,7 @@ const LogsTable = () => {
onClick={() => {
sortLog('content');
}}
width={isAdminUser ? 4 : 6}
width={isAdminUser ? 3 : 5}
>
详情
</Table.HeaderCell>

9
web/src/custom.css Normal file
View File

@ -0,0 +1,9 @@
.custom-width .ui.container {
width: 100vw !important;
padding: 0 !important;
}
.custom-width .ui.menu {
margin-bottom: 0 !important;
}

View File

@ -207,4 +207,14 @@ code {
.hide-on-mobile {
display: none !important;
}
}
}
@media only screen and (min-width: 1600px){
.main-content {
width: 1300px !important;
}
.ui.menu .ui.container {
width: 1608px !important; /* 或者你想要设置的宽度 */
/* padding: 0 !important; */
}
}