Make addRequest box resize nicely

This commit is contained in:
Dessa Simpson 2020-07-05 20:16:41 -07:00
parent 19f51d3a5a
commit 603769d5fd
2 changed files with 18 additions and 3 deletions

View file

@ -101,7 +101,9 @@ div#nav-userpic {
#addRequestModal {
position: relative;
padding: 1em;
display: inline-block;
margin: 2em;
width: 100%;
max-width: 480px;
background-color: #444;
box-shadow: 0px 5px 20px black;
}
@ -110,6 +112,17 @@ div#nav-userpic {
margin-top: 0;
}
#addRequestInputContainer {
display: flex;
justify-content: center;
}
#addRequestInputContainer input {
flex: 1;
max-width: 330px;
margin: 0 5px;
}
#addRequestModalClose {
position: absolute;
top: 0;