46 lines
640 B
SCSS
Executable File
46 lines
640 B
SCSS
Executable File
@import "../../stylesheets/variables/_all";
|
|
|
|
.enter {
|
|
opacity: 0.01;
|
|
}
|
|
|
|
.enterActive {
|
|
opacity: 1;
|
|
transition: opacity 400ms ease-in;
|
|
}
|
|
|
|
.appear {
|
|
opacity: 0.01;
|
|
}
|
|
|
|
.appearActive {
|
|
opacity: 1;
|
|
transition: opacity 400ms ease-in;
|
|
}
|
|
|
|
.presentationPaper {
|
|
order: 1;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: calc(100% - 1px);
|
|
width:100%;
|
|
overflow: hidden;
|
|
position: relative;
|
|
}
|
|
|
|
.svgStyles {
|
|
object-fit: contain;
|
|
width: 100%;
|
|
height: 100%;
|
|
max-width: 100%;
|
|
max-height: 100%;
|
|
}
|
|
|
|
.presentationContainer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|