chore: make fees and rewards page layout more consistent

This commit is contained in:
Matthew Russell 2024-02-12 10:58:47 -08:00
parent de62f09fda
commit bb6ecd2c72
No known key found for this signature in database

View File

@ -1,3 +1,4 @@
import { TinyScroll } from '@vegaprotocol/ui-toolkit';
import { ErrorBoundary } from '../../components/error-boundary'; import { ErrorBoundary } from '../../components/error-boundary';
import { FeesContainer } from '../../components/fees-container'; import { FeesContainer } from '../../components/fees-container';
import { useT } from '../../lib/use-t'; import { useT } from '../../lib/use-t';
@ -10,10 +11,10 @@ export const Fees = () => {
return ( return (
<ErrorBoundary feature="fees"> <ErrorBoundary feature="fees">
<div className="container p-4 mx-auto"> <TinyScroll className="p-4 max-h-full overflow-auto">
<h1 className="md:px-4 md:pb-4 text-2xl">{title}</h1> <h1 className="md:px-4 pb-4 text-2xl">{title}</h1>
<FeesContainer /> <FeesContainer />
</div> </TinyScroll>
</ErrorBoundary> </ErrorBoundary>
); );
}; };