Skip to content
This repository has been archived by the owner on Dec 8, 2023. It is now read-only.

Commit

Permalink
fix: quickstart detail layout shifts on some tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
tabathadelane committed Mar 2, 2022
1 parent 3465e8b commit dd8b2f5
Show file tree
Hide file tree
Showing 2 changed files with 12,644 additions and 13,019 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,15 @@ const Layout = ({ className, children }) => {
display: grid;
grid-template-columns: var(--sidebar-width) minmax(0, 1fr);
grid-template-areas:
'sidebar main'
grid-template-areas: 'sidebar main';
grid-template-rows: 1fr auto;
min-height: calc(100vh - var(--global-header-height));
margin: 0 auto;
max-width: var(--site-max-width);
@media screen and (max-width: 760px) {
grid-template-columns: minmax(0, 1fr);
grid-template-areas:
'main'
grid-template-areas: 'main';
grid-template-rows: unset;
}
`}
Expand Down
Loading

0 comments on commit dd8b2f5

Please sign in to comment.