mirror of
https://github.com/nextcloud/richdocuments.git
synced 2025-12-17 21:12:14 +01:00
This CSS was intended to apply to the Collabora iframe, however the ID
of that was updated to be random in ba45233bf (chore: refactor iframes
to load collabora directly, 2023-06-11) and this code didn't follow...
Signed-off-by: Skyler Grey <skyler.grey@collabora.com>
22 lines
357 B
CSS
22 lines
357 B
CSS
/*!
|
|
* SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
@media only screen and (max-width: 768px) {
|
|
#header {
|
|
display: none !important;
|
|
}
|
|
|
|
#content-wrapper {
|
|
padding-top: 0;
|
|
}
|
|
|
|
#content {
|
|
padding-top: 0;
|
|
}
|
|
|
|
.office-viewer__iframe {
|
|
height: 100%;
|
|
position: fixed;
|
|
}
|
|
}
|