Skip to content

Commit

Permalink
fix responder header section scroll (#2688)
Browse files Browse the repository at this point in the history
increase background contrast of app (#2631)
  • Loading branch information
imolorhe committed Nov 2, 2024
1 parent 9fb7651 commit 07d78dd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions DEV.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,3 +144,7 @@ psql --file=data.sql --dbname=altairgraphql-db --port=5432 --host=localhost --us
## Tips

- add `&pgbouncer=true` to your connection url in order to enable pgbouncer mode in Prisma

### Slow running development application

If the local development application feels extremely slow, check if you have the [Angular DevTools extension](https://chromewebstore.google.com/detail/angular-devtools/ienfalfjdbdpebioblfackkekamfmbnh) installed on your browser and disable it. It slows down the application significantly.
2 changes: 1 addition & 1 deletion packages/altair-app/src/scss/_layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
flex-direction: column;
height: 100vh;
color: var(--theme-font-color);
background: rgba(var(--rgb-theme-bg), 0.8);
background: rgba(var(--rgb-theme-bg), 0.9);
backdrop-filter: blur(20px);
cursor: default;
}
Expand Down
1 change: 1 addition & 0 deletions packages/altair-app/src/scss/components/_editor.scss
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ app-query-result {

.response-headers__container {
padding: 10px;
overflow-y: auto;
}

.response-headers__notice {
Expand Down

0 comments on commit 07d78dd

Please sign in to comment.