fix: align log cleanup button with other controls in the row

This commit is contained in:
RedwindA 2026-03-21 21:48:31 +08:00
parent 13122aa0fa
commit 49db5147c3

View File

@ -463,16 +463,18 @@ export default function SettingsPerformance(props) {
/> />
</div> </div>
</Col> </Col>
<Col <Col xs={24} sm={12} md={8}>
xs={24} <div style={{ marginBottom: 12 }}>
sm={12} <Text
md={8} strong
style={{ style={{
display: 'flex', display: 'block',
alignItems: 'flex-end', marginBottom: 8,
paddingBottom: 12, visibility: 'hidden',
}} }}
> >
&nbsp;
</Text>
<Popconfirm <Popconfirm
title={t('确认清理日志文件?')} title={t('确认清理日志文件?')}
content={ content={
@ -491,6 +493,7 @@ export default function SettingsPerformance(props) {
{t('清理日志文件')} {t('清理日志文件')}
</Button> </Button>
</Popconfirm> </Popconfirm>
</div>
</Col> </Col>
</Row> </Row>
</> </>