Merge pull request #113 from xyspg/main

fix: layout issues
This commit is contained in:
Calcium-Ion 2024-03-12 17:36:02 +08:00 committed by GitHub
commit 1e1a53e4d2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 7 additions and 2 deletions

View File

@ -696,7 +696,7 @@ const ChannelsTable = () => {
} : null
}/>
<div style={{display: isMobile()?'':'flex', marginTop: isMobile()?0:-45, zIndex: 999, position: 'relative', pointerEvents: 'none'}}>
<Space style={{pointerEvents: 'auto'}}>
<Space style={{pointerEvents: 'auto', marginTop: isMobile() ? 0 : 45}}>
<Button theme='light' type='primary' style={{marginRight: 8}} onClick={
() => {
setEditingChannel({

View File

@ -28,7 +28,12 @@ body {
border-bottom: 1px solid rgba(0,0,0,.1);
}
.semi-space {
display: block!important;
/*display: block!important;*/
display: flex;
flex-direction: row;
flex-wrap: wrap;
row-gap: 3px;
column-gap: 10px;
}
}