33 lines
492 B
SCSS
33 lines
492 B
SCSS
.dialog {
|
|
opacity: 0;
|
|
height: 100%;
|
|
width: 100%;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
|
|
.dialogContent {
|
|
height: 80%;
|
|
width: 80%;
|
|
background-color: white;
|
|
border: 10px solid rgb(86, 86, 86);
|
|
border-radius: 10px;
|
|
|
|
iframe {
|
|
width: 100%;
|
|
height: 100%;
|
|
border: none;
|
|
}
|
|
}
|
|
|
|
.imageDialog{
|
|
height: auto;
|
|
width: auto;
|
|
}
|
|
}
|