diff --git a/main/pub/talk/src/main.css b/main/pub/talk/src/main.css index fc881aecc..a5a33073e 100644 --- a/main/pub/talk/src/main.css +++ b/main/pub/talk/src/main.css @@ -139,9 +139,12 @@ body { width: 8rem; margin-bottom: 0.3rem; cursor: pointer; - text-transform: capitalize; font-weight: 200; } +#stations .station { + display: block; + width: 24rem; +} .station .name { border-bottom: 6px solid transparent; } @@ -274,7 +277,7 @@ body { margin: 0; font-weight: 200; font-size: 2rem; - text-transform: capitalize; + text-transform: lowercase; } input.join { font-size: 4rem; @@ -298,6 +301,7 @@ input.join:focus::-webkit-input-placeholder { } a.up { height: 2rem; + margin-top: 0.6rem; vertical-align: middle; display: inline-block; } diff --git a/main/pub/talk/src/main.js b/main/pub/talk/src/main.js index 8abc01807..6bdc02271 100644 --- a/main/pub/talk/src/main.js +++ b/main/pub/talk/src/main.js @@ -50,7 +50,10 @@ module.exports = { statement: { bouquet: [], speech: { - say: message + lin: { + say: false, + txt: message + } }, date: Date.now() } @@ -224,7 +227,7 @@ Message = recl({ }, this.convTime(this.props.thought.statement.date)) ]), div({ className: "mess" - }, this.props.thought.statement.speech.say) + }, this.props.thought.statement.speech.lin.txt) ]); } });