fix(ui): restrict assist stats max width

This commit is contained in:
nick-delirium 2023-10-23 11:05:00 +02:00
parent 07385c31ae
commit 5e20572241

View file

@ -205,8 +205,8 @@ function AssistStats() {
};
return (
<>
<div className={'w-full'} id={'pdf-anchor'}>
<div className={'w-full'}>
<div className={'mx-auto'} style={{ maxWidth: 1360 }} id={'pdf-anchor'}>
<div id={'pdf-ignore'} className={'w-full flex items-center mb-2'}>
<Typography.Title style={{ marginBottom: 0 }} level={4}>
Assist Stats
@ -288,7 +288,7 @@ function AssistStats() {
</div>
</div>
<div id={'stats-layer'} />
</>
</div>
);
}