Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[NTP] Don't hide NTP stats or widgets for "short" windows (uplift to 1.70.x) #25449

Merged
merged 1 commit into from
Sep 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -165,9 +165,6 @@ export const Page: React.FunctionComponent<React.PropsWithChildren<PageProps>> =

export const GridItemStats = styled('section')`
grid-column: 1 / span 2;
@media screen and (max-height: ${breakpointShortHeight}) {
display: none;
}
`

export const GridItemClock = styled('section')`
Expand All @@ -176,6 +173,9 @@ export const GridItemClock = styled('section')`
@media screen and (max-width: ${breakpointEveryBlock}) {
display: none;
}
@media screen and (max-height: ${breakpointShortHeight}) {
display: none;
}
`

export const GridItemWidgetStack = styled('section')`
Expand All @@ -187,9 +187,6 @@ export const GridItemWidgetStack = styled('section')`
@media screen and (max-width: ${breakpointEveryBlock}) {
display: none;
}
@media screen and (max-height: ${breakpointShortHeight}) {
display: none;
}
`

export const GridItemTopSites = styled('section')`
Expand Down
Loading