1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 09:13:33 +00:00

media query adjustments

This commit is contained in:
Kyle Spearrin
2018-01-30 17:34:58 -05:00
parent 0be7f9f8eb
commit 6040e12e97
2 changed files with 8 additions and 4 deletions

View File

@@ -4,10 +4,14 @@
display: flex;
justify-content: center;
align-items: center;
height: calc(100% + 50px);
margin-top: -50px;
height: 100%;
@media (min-height: 750px) {
@media (min-height: 500px) {
height: calc(100% + 50px);
margin-top: -50px;
}
@media (min-height: 800px) {
height: calc(100% + 300px);
margin-top: -300px;
}