Adjust styles

This commit is contained in:
Ilja 2022-02-04 16:53:21 +02:00
parent b79d0c533b
commit 10b21b3d1c
3 changed files with 3 additions and 4 deletions

View File

@ -18,7 +18,8 @@ export default function AccountCard({ name, logo, rgb, address }: Props) {
borderColor: `rgba(${rgb}, 0.6)`, borderColor: `rgba(${rgb}, 0.6)`,
boxShadow: `0 0 10px 0 rgba(${rgb}, 0.1)`, boxShadow: `0 0 10px 0 rgba(${rgb}, 0.1)`,
marginBottom: '$6', marginBottom: '$6',
overflowY: 'hidden' overflowY: 'hidden',
minHeight: '70px'
}} }}
> >
<Card.Body <Card.Body

View File

@ -16,7 +16,7 @@ export default function PageHeader({ children }: Props) {
h2 h2
weight="bold" weight="bold"
css={{ css={{
textGradient: '45deg, $primary -20%, $secondary 100%', textGradient: '45deg, $primary, $secondary 100%',
marginBottom: '$10' marginBottom: '$10'
}} }}
> >

View File

@ -48,8 +48,6 @@ export default function GlobalLayout({ children }: Props) {
> >
{initialized ? ( {initialized ? (
<Fragment> <Fragment>
<Card.Header>Header</Card.Header>
<Divider />
<Card.Body css={{ overflow: 'scroll' }}>{children}</Card.Body> <Card.Body css={{ overflow: 'scroll' }}>{children}</Card.Body>
<Divider /> <Divider />
<Card.Footer>Footer</Card.Footer> <Card.Footer>Footer</Card.Footer>