Skip to content

Commit

Permalink
fix: make slightly more responsive
Browse files Browse the repository at this point in the history
  • Loading branch information
roadlittledawn committed Aug 30, 2021
1 parent f5dca12 commit fa139a4
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions src/pages/observability-packs.js
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,9 @@ const ObservabilityPacksPage = ({ data, location }) => {
@media screen and (max-width: 760px) {
grid-template-columns: minmax(0, 1fr);
grid-template-areas: 'main';
grid-template-areas:
'sidebar'
'main';
grid-template-rows: unset;
}
`}
Expand All @@ -171,7 +173,10 @@ const ObservabilityPacksPage = ({ data, location }) => {
top: var(--global-header-height);
@media screen and (max-width: 760px) {
display: none;
display: block;
position: relative;
width: 100%;
height: 100%;
}
`}
>
Expand All @@ -184,6 +189,9 @@ const ObservabilityPacksPage = ({ data, location }) => {
right: 0;
padding: var(--site-content-padding);
overflow: auto;
@media screen and (max-width: 760px) {
position: relative;
}
`}
>
<FormControl>
Expand Down

0 comments on commit fa139a4

Please sign in to comment.