Skip to content

Commit

Permalink
Esri#980 - allow html to be overflow auto
Browse files Browse the repository at this point in the history
  • Loading branch information
paulcpederson committed Sep 19, 2018
1 parent e9b43d5 commit 2334ea5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
### Updates
- use new search icon for search field (#979)
- Fix `.toggle-switch-input` cascade (#977)
- `html` element now uses `overflow:auto` instead of forcing a scroll bar (#980)

## [1.0.3]

Expand Down
6 changes: 3 additions & 3 deletions lib/sass/calcite-web/base/_reset.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

@mixin reset() {

// Always show vertical scroll bars, standardize type size
// standardize type size
html {
overflow-y: scroll;
overflow-y: auto;
min-height: 100%;
font-size: 100%;
-webkit-text-size-adjust: 100%;
Expand Down Expand Up @@ -74,4 +74,4 @@

@if $include-reset == true {
@include reset();
}
}

0 comments on commit 2334ea5

Please sign in to comment.