This repository has been archived by the owner on Sep 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(autocomplete): fixes height calculation issue when autocomplete i…
- Loading branch information
1 parent
eb94d64
commit a1889cd
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
html, body { | ||
height: 100%; | ||
min-height: 100%; | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
ThomasBurleson
Contributor
|
||
color: rgba(0,0,0,0.87); | ||
background: white; | ||
position: relative; | ||
|
FYI: this has broken the docs in Chrome 46 / Opera 33. Page is no longer scrollable. Setting height:100% fixes the docs page scrolling.