1
Fork 0
mirror of https://github.com/Steffo99/steffoweb.git synced 2024-11-24 17:14:30 +00:00

🔧 Disable minWidth on accounts

This commit is contained in:
Steffo 2021-10-25 13:41:34 +02:00
parent 23463ecb0d
commit 89e64540fe
Signed by: steffo
GPG key ID: 6965406171929D01

View file

@ -22,7 +22,7 @@ export function Account({icon, url, name}: AccountProps): JSX.Element {
} }
return ( return (
<Panel className={Style.Account}> <Panel className={Style.Account} style={{minWidth: "unset"}}>
{contents} {contents}
</Panel> </Panel>
) )