Skip to content
This repository has been archived by the owner on May 7, 2024. It is now read-only.

Commit

Permalink
v0.1.9 リアクションした人の名前が見切れる問題を修正
Browse files Browse the repository at this point in the history
  • Loading branch information
mohno007 committed Jan 11, 2019
1 parent 64945e9 commit 858251f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "typetalk-emoreact",
"version": "0.1.8",
"version": "0.1.9",
"description": "",
"scripts": {
"build": "rollup --config",
Expand Down
6 changes: 4 additions & 2 deletions src/view.js
Original file line number Diff line number Diff line change
Expand Up @@ -130,13 +130,15 @@ export const style = html`
transition: opacity 0.2s linear 0s;
width: max-content;
max-width: 20vw;
max-width: 10vw;
background: rgba(80, 80, 80, 0.8);
padding: 0.5em 1em;
border-radius: 10px;
color: white;
font-size: 0.8em;
word-break: break-all;
}
:hover > .typetalk_emoreact_reaction--users {
Expand Down Expand Up @@ -304,7 +306,7 @@ const reaction = ({ me, message, reaction }, actions, reduce) => {
${
Array.from(reaction.users)
.map(u => u.name)
.join(',')
.join(', ')
}
</div>
</div>
Expand Down

0 comments on commit 858251f

Please sign in to comment.