hedgedoc/src/components/markdown-renderer/replace-components/image/lightbox.scss
Tilman Vatteroth a6996d9414
Limit lightbox size (#923)
Signed-off-by: Tilman Vatteroth <tilman.vatteroth@tu-dortmund.de>
2021-01-08 09:36:19 +01:00

11 lines
248 B
SCSS

/*!
* SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
*
* SPDX-License-Identifier: AGPL-3.0-only
*/
.lightbox img {
max-width: calc(100vw - 3.5rem);
max-height: calc(100vh - 3.5rem - 75px);
object-fit: contain;
}