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