diff options
-rw-r--r-- | ui/app/notice.js | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/ui/app/notice.js b/ui/app/notice.js index 5e6028cff..0b59ebef8 100644 --- a/ui/app/notice.js +++ b/ui/app/notice.js @@ -23,6 +23,7 @@ function Notice () { Notice.prototype.render = function () { const props = this.props const title = props.lastUnreadNotice.title + const date = props.lastUnreadNotice.date return ( h('.flex-column.flex-center.flex-grow', [ @@ -30,7 +31,6 @@ Notice.prototype.render = function () { style: { background: '#EBEBEB', color: '#AEAEAE', - marginBottom: 24, width: '100%', fontSize: '20px', textAlign: 'center', @@ -40,6 +40,20 @@ Notice.prototype.render = function () { title, ]), + h('h5.flex-center.text-transform-uppercacse.terms-header', { + style: { + background: '#EBEBEB', + color: '#AEAEAE', + marginBottom: 24, + width: '100%', + fontSize: '20px', + textAlign: 'center', + padding: 6, + }, + }, [ + date, + ]), + h('style', ` .markdown { |