Skip to content
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

_content/tour/static/css/app.css: fix hidden horizontal scrollbar for long outputs #283

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Commits on May 10, 2024

  1. Large outputs now show vertical scrollbar

    The calc(100% - 52px) corrects for the 32px that the .output element sticks out below the bottom of the page, and 20px for for the 10px padding that all pre tags have on the top and bottom. If this isn't corrected for then the vertical scrollbar is rendered below the bottom of the page.
    Sanian-Creations committed May 10, 2024
    Configuration menu
    Copy the full SHA
    a6844bb View commit details
    Browse the repository at this point in the history

Commits on May 11, 2024

  1. Update app.css

    Fixed root cause of issue: the `#explorer + div` element was sticking out 32px below the page, not anymore.
    `.output > pre` now uses box-sizing so that max-height 100% will always work regardless of any specific padding.
    Sanian-Creations committed May 11, 2024
    Configuration menu
    Copy the full SHA
    8a9aabc View commit details
    Browse the repository at this point in the history
  2. Update app.css

    change is now minimal
    Sanian-Creations committed May 11, 2024
    Configuration menu
    Copy the full SHA
    6f7ecd3 View commit details
    Browse the repository at this point in the history