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

Capitalizations via text-transform for main screen transactions.

This commit is contained in:
Dan 2017-08-30 22:33:32 -02:30 committed by Chi Kei Chan
parent 5d8bf6c86a
commit 3cb51e32c9
2 changed files with 7 additions and 2 deletions

View File

@ -40,8 +40,8 @@ TxList.prototype.render = function () {
}, [ }, [
h('div', { h('div', {
style: {}, style: {}
}, 'TRANSACTIONS'), }, 'transactions'),
]), ]),

View File

@ -6,6 +6,10 @@
} }
} }
.tx-list-header {
text-transform: capitalize;
}
@media screen and (max-width: $break-small) { @media screen and (max-width: $break-small) {
.tx-list-header-wrapper { .tx-list-header-wrapper {
margin-top: .2em; margin-top: .2em;
@ -124,6 +128,7 @@
.tx-list-status { .tx-list-status {
color: $dusty-gray; color: $dusty-gray;
font-size: 16px; font-size: 16px;
text-transform: capitalize;
} }
} }