Skip to content

Commit

Permalink
Fix to quick start scrolling (opendatahub-io#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeff-phillips-18 authored Aug 12, 2021
1 parent 2600b09 commit 4ba3e1f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions .env.production
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
APP_ENV=production
FASTIFY_LOG_LEVEL=warn
7 changes: 6 additions & 1 deletion frontend/src/app/App.scss
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,12 @@ html, body, #root {
}
}
}

.pf-c-page__main {
height: 100%;
}
.pf-c-drawer__content {
overflow-y: auto;
}
.pf-c-page__main-section {
.pf-l-gallery {
--pf-l-gallery--GridTemplateColumns--max-on-xl: 330px;
Expand Down
1 change: 0 additions & 1 deletion frontend/src/utilities/useWatchDashboardConfig.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ export const useWatchDashboardConfig = (): {
const watchDashboardConfig = () => {
fetchDashboardConfig()
.then((config) => {
console.dir(config);
if (cancelled) {
return;
}
Expand Down

0 comments on commit 4ba3e1f

Please sign in to comment.