15 lines
582 B
CSS
15 lines
582 B
CSS
/* 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
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
/**
|
|
* quezoncity.gov.ph - Main iframe has zero height
|
|
* Bug #1886566 - https://bugzilla.mozilla.org/show_bug.cgi?id=1886566
|
|
* WebCompat issue #130868 - https://webcompat.com/issues/130868
|
|
*
|
|
* The page's main iframe has zero height because the sites uses the
|
|
* non-standard -webkit-fill-available CSS value to give it a height.
|
|
*/
|
|
iframe#qcid_iframe {
|
|
height: 100%;
|
|
}
|