mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Add date to notices display.
This commit is contained in:
parent
73998feeb2
commit
8d0f4c2799
@ -23,10 +23,24 @@ function Notice () {
|
|||||||
Notice.prototype.render = function () {
|
Notice.prototype.render = function () {
|
||||||
const props = this.props
|
const props = this.props
|
||||||
const title = props.lastUnreadNotice.title
|
const title = props.lastUnreadNotice.title
|
||||||
|
const date = props.lastUnreadNotice.date
|
||||||
|
|
||||||
return (
|
return (
|
||||||
h('.flex-column.flex-center.flex-grow', [
|
h('.flex-column.flex-center.flex-grow', [
|
||||||
h('h3.flex-center.text-transform-uppercacse.terms-header', {
|
h('h3.flex-center.text-transform-uppercacse.terms-header', {
|
||||||
|
style: {
|
||||||
|
background: '#EBEBEB',
|
||||||
|
color: '#AEAEAE',
|
||||||
|
width: '100%',
|
||||||
|
fontSize: '20px',
|
||||||
|
textAlign: 'center',
|
||||||
|
padding: 6,
|
||||||
|
},
|
||||||
|
}, [
|
||||||
|
title,
|
||||||
|
]),
|
||||||
|
|
||||||
|
h('h5.flex-center.text-transform-uppercacse.terms-header', {
|
||||||
style: {
|
style: {
|
||||||
background: '#EBEBEB',
|
background: '#EBEBEB',
|
||||||
color: '#AEAEAE',
|
color: '#AEAEAE',
|
||||||
@ -37,7 +51,7 @@ Notice.prototype.render = function () {
|
|||||||
padding: 6,
|
padding: 6,
|
||||||
},
|
},
|
||||||
}, [
|
}, [
|
||||||
title,
|
date,
|
||||||
]),
|
]),
|
||||||
|
|
||||||
h('style', `
|
h('style', `
|
||||||
|
Loading…
Reference in New Issue
Block a user