UI 调整
Some checks failed
Build and Deploy / build (push) Failing after 16m27s

This commit is contained in:
cheney 2026-04-18 11:11:25 +08:00
parent cccff194b6
commit cd5fe4cee5

View File

@ -196,7 +196,17 @@ function App() {
}
return (
<div className="app" style={{ maxWidth: '800px', margin: '0 auto', padding: '20px', fontFamily: 'Arial, sans-serif', backgroundColor: '#121212', color: '#e0e0e0', minHeight: '100vh' }}>
<div className="app" style={{
maxWidth: isMobile ? '100%' : '85%',
minWidth: isMobile ? '100%' : '85%',
width: isMobile ? '100%' : '85%',
margin: '0 auto',
padding: '20px',
fontFamily: 'Arial, sans-serif',
backgroundColor: '#121212',
color: '#e0e0e0',
minHeight: '100vh'
}}>
<h1 style={{ textAlign: 'center', color: '#f59e0b' }}></h1>
{/* 桌面端 Tab 选择 */}