1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Merge pull request #5340 from whymarrh/fix-first-time-flow-2

Fix height of first-time-flow container, again
This commit is contained in:
Whymarrh Whitby 2018-09-24 21:12:10 -02:30 committed by GitHub
commit 0dd89cd930
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,7 +8,6 @@
.first-time-flow { .first-time-flow {
width: 100vw; width: 100vw;
height: 100vh;
background-color: #fff; background-color: #fff;
overflow: auto; overflow: auto;
display: flex; display: flex;
@ -18,6 +17,12 @@
font-family: Roboto; font-family: Roboto;
} }
@media screen and (min-height: 576px) {
.first-time-flow {
height: 100vh;
}
}
.alpha-warning__container { .alpha-warning__container {
display: flex; display: flex;
justify-content: center; justify-content: center;