mirror of
https://github.com/umami-software/umami.git
synced 2026-02-09 15:17:23 +01:00
This commit is contained in:
parent
30c45f888f
commit
3b4776b0e0
6 changed files with 2055 additions and 16 deletions
|
|
@ -23,7 +23,7 @@ export function PageHeader({
|
|||
}) {
|
||||
return (
|
||||
<Grid
|
||||
columns={{ xs: '1fr', md: '1fr 1fr' }}
|
||||
columns={{ base: '1fr', md: '1fr 1fr' }}
|
||||
paddingY="6"
|
||||
marginBottom="6"
|
||||
border={showBorder ? 'bottom' : undefined}
|
||||
|
|
@ -38,10 +38,10 @@ export function PageHeader({
|
|||
)}
|
||||
{title && titleHref ? (
|
||||
<LinkButton href={titleHref} variant="quiet">
|
||||
<Heading size={{ xs: '2', md: '3', lg: '4' }}>{title}</Heading>
|
||||
<Heading size={{ base: 'lg', md: '2xl', lg: '3xl' }}>{title}</Heading>
|
||||
</LinkButton>
|
||||
) : (
|
||||
title && <Heading size={{ xs: '2', md: '3', lg: '4' }}>{title}</Heading>
|
||||
title && <Heading size={{ base: 'lg', md: '2xl', lg: '3xl' }}>{title}</Heading>
|
||||
)}
|
||||
</Row>
|
||||
{description && (
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue