1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01: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', background: '#FFFFFF',
} }
}, [ }, [
h('div.phone-visible.fa.fa-bars', {
}, []),
h('div.flex-row', { h('div.flex-row', {
style: { style: {
margin: '1.8em 1.3em 0.8em 1.3em', 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) { @media screen and (min-width: 576px) {
.lap-visible { .lap-visible {
display: none; display: flex;
} }
.phone-visible { .phone-visible {
display: flex; display: none;
} }
} }
@media screen and (max-width: 575px) { @media screen and (max-width: 575px) {
.lap-visible { .lap-visible {
display: flex;
}
.phone-visible {
display: none; display: none;
} }
.phone-visible {
display: flex;
}
} }