Updated generic compose-modal to not take up full screen

leave some space to make users aware its a dialog
This commit is contained in:
mgabdev 2019-07-19 15:32:54 -04:00
parent 284a9ef082
commit 0ba57e695a
1 changed files with 4 additions and 2 deletions

View File

@ -4854,6 +4854,7 @@ noscript {
border-radius: 6px;
flex-direction: column;
width: 600px;
margin: 10px 0;
&__header {
display: block;
@ -4895,8 +4896,9 @@ noscript {
}
@media screen and (max-width:895px) {
height: 100vh;
width: 100vw;
margin: 0;
height: 98vh;
width: 98vw;
}
}