popcodeorg / popcodeorg/popcode
Vertical Divider Thickness / Environment Column Overflow Y
Nobody has claimed this yet.
- Dominant language
- JavaScript
- Stars
- 191
- Forks
- 143
- Avg merge
- 4d 11h
- Merged PRs (30d)
- 5
Description
While looking at the component resizing PR, I noticed the space between the editor column and output is separated by a thick light gray area. I believe this is attributed to the overflow-y: scroll on the environment__column-contents rule. Taking it away seems to make the layout feel a bit cleaner and doesn't seem to make much of a difference in the scrolling experience as far as I can tell. Is there a reason for this rules existence that I am missing?
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
overflow-x: hidden;
**overflow-y: scroll;**
}```
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start by locating the .environment__column-contents rule and inspect how its overflow-y: scroll behavior affects the editor/output layout. Compare the layout and scrolling experience with that declaration removed, and confirm whether the thick divider and column overflow are resolved without regressing scrolling.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- css
- Domain
- frontend
- Issue type
- Bug
- Difficulty
- 2/5
- Estimated time
- 1-3 hours
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 35/100