-
Notifications
You must be signed in to change notification settings - Fork 2k
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
[ui] Fixed: Evaluations sidebar/response not scrollable #16960
[ui] Fixed: Evaluations sidebar/response not scrollable #16960
Conversation
display: grid; | ||
min-height: 200px; | ||
grid-template-rows: auto 1fr; | ||
overflow: hidden; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The parent evaluation response container has overflow: hidden deliberately: it contains both the header and the json viewer, the latter of which has auto overflow.
} | ||
& > div, | ||
h1.title { | ||
margin: 0; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let the flex/grid parent handle gap/margin where possible
d06e298
to
5f1f452
Compare
Ember Asset Size actionAs of bb9927d Files that got Bigger 🚨:
Files that stayed the same size 🤷:
|
Ember Test Audit comparison
|
This PR establishes CSS flexbox regions in the Evaluations sidebar so both it, and the evaluation response, can be scrolled.