Skip to content
This repository was archived by the owner on Jun 1, 2023. It is now read-only.

Only show scrollbars when needed #132

Merged
merged 4 commits into from
Jul 27, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Assets/css/all.css
Original file line number Diff line number Diff line change
Expand Up @@ -738,7 +738,7 @@ body {

main,
nav {
overflow-x: scroll;
overflow-x: auto;
}

main {
Expand All @@ -765,7 +765,7 @@ nav {
float: right;
margin-left: 1em;
max-height: 100vh;
overflow: scroll;
overflow: auto;
padding: 0 1em 3em 1em;
position: sticky;
top: 1em;
Expand Down Expand Up @@ -883,7 +883,7 @@ dd {
border-radius: 8px;
font-size: smaller;
margin-bottom: 2em;
overflow-x: scroll;
overflow-x: auto;
padding: 1em;
padding-left: 3em;
text-indent: -2em;
Expand Down
5 changes: 5 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed

- Changed HTML output to show scrollbars only when necessary.
#132 by @andrewchang-bird.

### Fixed

- Fixed runtime error related to networking and processes on Ubuntu Linux.
Expand Down
Loading