Source code
Revision control
Copy as Markdown
Other Tools
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
/**
* salling.dk - filters cannot be scrolled on the mobile layout
*
* They are relying on containers with display:inline-table and a definite height
* set with JS to propagate that value to relative-height children, which breaks
* the scrolling on those children. This CSS works around the problem.
*/
@media (max-width: 767px) {
.filter.open {
display: block;
}
}