Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Chrome App cannot be scroll

I have created few linked web pages that can be navigated via index.html page. Index.html page's content is somewhat lengthy and so I have to scroll that page. It works fine as a web page. Then I converted it into chrome app. When I launch the app, the scroll bar is not shown there. I cannot see the below content. How can can I get this resolved. (Using as an app was my target, so I cannot use it as a web page.)

like image 829
bula Avatar asked Feb 24 '14 06:02

bula


1 Answers

html, body {
    overflow-y: visible;
}
like image 51
Dmitrii Sorin Avatar answered Oct 18 '22 11:10

Dmitrii Sorin