Put login / register boxes vertical when narrow.

This commit is contained in:
voussoir 2017-07-20 23:02:09 -07:00
parent f14d5fa312
commit 463b627920

View file

@ -20,7 +20,7 @@ button
#content_body
{
display: flex;
flex: 1;
flex: 1 1 auto;
flex-direction: column;
justify-content: center;
align-items: center;
@ -34,6 +34,7 @@ button
{
display: flex;
flex-direction: row;
flex: 0 0 auto;
}
#login_form,
@ -54,6 +55,13 @@ button
margin-top: 5px;
margin-bottom: 5px;
}
@media screen and (max-width: 800px)
{
#login_register_box
{
flex-direction: column;
}
}
</style>
</head>