Skip to content

Commit 1556b5a

Browse files
authored
Add margin top for large and xlarge breakpoints (#47801)
1 parent 84d6a5d commit 1556b5a

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/frame/components/ui/MiniTocs/MiniTocs.tsx

+6-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,12 @@ export function MiniTocs({ miniTocItems }: MiniTocsPropsT) {
6060
as="h2"
6161
id="in-this-article"
6262
className="mb-1 ml-3"
63-
sx={{ fontSize: 1 }}
63+
sx={{
64+
'@media (min-width: 1012px) and (max-width: 1400px)': {
65+
marginTop: '2rem',
66+
},
67+
fontSize: 1,
68+
}}
6469
aria-label={t('miniToc')}
6570
>
6671
{t('miniToc')}

0 commit comments

Comments
 (0)