28 lines
528 B
SCSS
28 lines
528 B
SCSS
@import '../../../assets/styles/variables';
|
|
@import '../../../../../../libs/common-ui/src/assets/styles/common-mixins';
|
|
|
|
.content-container {
|
|
background-color: $grey-2;
|
|
justify-content: center;
|
|
@include scroll-bar;
|
|
overflow: auto;
|
|
}
|
|
|
|
.full-height {
|
|
display: flex;
|
|
flex-direction: row;
|
|
position: absolute;
|
|
bottom: 0;
|
|
width: 100%;
|
|
height: calc(100% + 50px);
|
|
z-index: 1;
|
|
}
|
|
|
|
iframe {
|
|
background: white;
|
|
width: 500px;
|
|
height: 500px;
|
|
position: absolute;
|
|
z-index: 100;
|
|
}
|