1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 11:22:43 +02:00

Add burger icon and phone-visible media queries

This commit is contained in:
sdtsui 2017-08-02 12:29:07 -07:00
parent 41c585c796
commit 22b03c62e6
2 changed files with 11 additions and 6 deletions

View File

@ -40,6 +40,11 @@ TxView.prototype.render = function () {
background: '#FFFFFF',
}
}, [
h('div.phone-visible.fa.fa-bars', {
}, []),
h('div.flex-row', {
style: {
margin: '1.8em 1.3em 0.8em 1.3em',

View File

@ -723,22 +723,22 @@ div.message-container > div:first-child {
@media screen and (min-width: 576px) {
.lap-visible {
display: none;
display: flex;
}
.phone-visible {
display: flex;
display: none;
}
}
@media screen and (max-width: 575px) {
.lap-visible {
display: flex;
}
.phone-visible {
display: none;
}
.phone-visible {
display: flex;
}
}