2025-05-10 02:09:06 +02:00
|
|
|
/*!
|
|
|
|
|
* Copyright (c) 2024 PLANKA Software GmbH
|
|
|
|
|
* Licensed under the Fair Use License: https://github.com/plankanban/planka/blob/master/LICENSE.md
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
:global(#app) {
|
|
|
|
|
.content {
|
|
|
|
|
bottom: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
margin: auto;
|
2025-12-11 12:11:34 +01:00
|
|
|
max-height: 90%;
|
|
|
|
|
max-width: 90%;
|
2025-05-10 02:09:06 +02:00
|
|
|
position: absolute;
|
|
|
|
|
right: 0;
|
|
|
|
|
top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.contentViewer {
|
|
|
|
|
height: 90%;
|
|
|
|
|
width: MIN(90%, 1120px); // https://github.com/sass/node-sass/issues/2815
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.contentError {
|
2025-12-11 12:11:34 +01:00
|
|
|
align-items: center;
|
2025-05-10 02:09:06 +02:00
|
|
|
color: #fff;
|
2025-12-11 12:11:34 +01:00
|
|
|
display: flex;
|
2025-05-10 02:09:06 +02:00
|
|
|
font-size: 20px;
|
|
|
|
|
font-weight: bold;
|
2025-12-19 17:24:22 +01:00
|
|
|
height: fit-content;
|
2025-12-11 12:11:34 +01:00
|
|
|
justify-content: center;
|
|
|
|
|
line-height: 1.2;
|
2025-06-06 13:54:01 +02:00
|
|
|
text-align: center;
|
2025-12-19 17:24:22 +01:00
|
|
|
width: fit-content;
|
2025-05-10 02:09:06 +02:00
|
|
|
}
|
|
|
|
|
}
|