Dateien nach "frontend/src" hochladen

This commit is contained in:
2026-05-25 23:15:56 +02:00
parent 9d3bb4f622
commit cccf4f4bb3

View File

@@ -225,7 +225,7 @@ function BottomNav({ active, setActive, user, onLogout, updateInfo, onUpdateClic
const MI = ({icon, label, onClick, color='#fff'}) => (
<button onClick={onClick} style={{ width:'100%', padding:'11px 20px', background:'transparent',
border:'none', display:'flex', alignItems:'center', gap:10, cursor:'pointer' }}>
<span style={{fontSize:17, flexShrink:0, width:22, textAlign:'center', display:'inline-block'}}>{icon}</span>
<span style={{fontSize:17, flexShrink:0, width:22, textAlign:'center', display:'inline-block', color:'rgba(255,255,255,0.85)'}}>{icon}</span>
<span style={{color, fontFamily:'monospace', fontSize:13}}>{label}</span>
</button>
);