very easy. You define all elements with overflow:hidden at the top
* { padding: 0px; margin: 0px; overflow: hidden; }
Then you overwrite the property for the #top div as follows:
#top { flex-grow: 1; overflow-y: auto; }
Effectively kill is a property that you defined first. Just get rid of this overflow-y or define overflow-y:hidden and it will work. Remember that the order of definitions in CSS is very important, so anything you add AFTER one definition will be overwritten with the new definition.
Devin source share