New sizes for submit response modal

This commit is contained in:
Alicia Sykes
2018-03-10 22:43:08 +00:00
parent a03fb432a0
commit 56e632e039
2 changed files with 16 additions and 1 deletions

View File

@@ -1 +1,5 @@
<p>Hello</p>
<div class="submit-response-container">
<p>Hello</p>
</div>

View File

@@ -0,0 +1,11 @@
.submit-response-container{
/* Set dimensions */
min-width: 30em;
margin: 2em 4em;
@media only screen and (max-width: 768px) { // We have a smaller version for mobile devices
min-width: 12em;
margin: 2em 1em;
}
}