Skip to content

Commit

Permalink
fix: icon for pass bubble
Browse files Browse the repository at this point in the history
  • Loading branch information
Oliboy50 committed Oct 31, 2022
1 parent db9ec56 commit 41cdd6c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions velonimo.css
Original file line number Diff line number Diff line change
Expand Up @@ -234,9 +234,6 @@ Board
.player-table-speech-bubble.speech-bubble-on-right {
left: 185px;
}
.player-table-speech-bubble .turn-passed-bubble-content {
padding: 3px;
}
.player-table-speech-bubble::after {
content: "";
position: absolute;
Expand Down
2 changes: 1 addition & 1 deletion velonimo.js
Original file line number Diff line number Diff line change
Expand Up @@ -1809,7 +1809,7 @@ function (dojo, declare) {
* @param {number} playerId
*/
showTurnPassedBubble: function (playerId) {
$(`player-table-${playerId}-speech-bubble`).innerHTML = '<i class="fa fa-backward turn-passed-bubble-content"></i>';
$(`player-table-${playerId}-speech-bubble`).innerHTML = '<i class="fa fa-times"></i>';
dojo.addClass(`player-table-${playerId}-speech-bubble`, DOM_CLASS_PLAYER_SPEECH_BUBBLE_SHOW);
},
/**
Expand Down

0 comments on commit 41cdd6c

Please sign in to comment.