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

Reduce header shadow on mobile

This commit is contained in:
Chi Kei Chan 2017-10-10 14:40:00 -07:00
parent d4343fe7e5
commit b7e2bcf806
2 changed files with 5 additions and 1 deletions

View File

@ -38,6 +38,8 @@
top: 0;
box-shadow: none;
height: calc(100vh - 41px - 100px);
border-top-left-radius: 0;
border-top-right-radius: 0;
}
}
@ -301,5 +303,7 @@ section .confirm-screen-account-number,
@media screen and (max-width: $break-small) {
border-top: 1px solid $alto;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
}

View File

@ -10,7 +10,7 @@
@media screen and (max-width: 575px) {
padding: 0 12px;
width: 100%;
box-shadow: 0 2px 2px 1px rgba(0, 0, 0, .08);
box-shadow: 0 0 0 1px rgba(0, 0, 0, .08);
z-index: $mobile-header-z-index;
}