You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
624 B
34 lines
624 B
9 years ago
|
.Modal {
|
||
|
position: fixed;
|
||
|
width: 100%; height: 100%;
|
||
|
left: 0; top: 0; right: 0; bottom: 0;
|
||
|
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
|
||
|
transition: opacity .5s;
|
||
|
background: rgba(black, .65);
|
||
|
opacity: 0;
|
||
|
&.visible { opacity: 1 }
|
||
|
&.hidden { display: none }
|
||
|
}
|
||
|
|
||
|
.Dialog {
|
||
|
margin: dist(-1);
|
||
|
padding: dist(0) dist(-1);
|
||
|
overflow: hidden;
|
||
|
|
||
|
max-width: 100%;
|
||
|
max-height: 100%;
|
||
|
flex: 0 1 30rem;
|
||
|
//min-height: 15rem;
|
||
|
|
||
|
background: #1c1c1e;
|
||
|
border-left: 6px solid $c-form-highlight;
|
||
|
border-right: 6px solid $c-form-highlight;
|
||
|
box-shadow: 0 0 2px 0 #434349, 0 0 6px 0 black;
|
||
|
|
||
|
border-radius: 6px;
|
||
|
}
|