mirror of
https://github.com/plankanban/planka.git
synced 2025-12-24 17:25:00 +03:00
36 lines
695 B
SCSS
36 lines
695 B
SCSS
/*!
|
|
* 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;
|
|
max-height: 90%;
|
|
max-width: 90%;
|
|
position: absolute;
|
|
right: 0;
|
|
top: 0;
|
|
}
|
|
|
|
.contentViewer {
|
|
height: 90%;
|
|
width: MIN(90%, 1120px); // https://github.com/sass/node-sass/issues/2815
|
|
}
|
|
|
|
.contentError {
|
|
align-items: center;
|
|
color: #fff;
|
|
display: flex;
|
|
font-size: 20px;
|
|
font-weight: bold;
|
|
height: fit-content;
|
|
justify-content: center;
|
|
line-height: 1.2;
|
|
text-align: center;
|
|
width: fit-content;
|
|
}
|
|
}
|