Skip to content

Commit

Permalink
Merge pull request #655 from osushi-academy/nagata/front/showicons
Browse files Browse the repository at this point in the history
スマホで表示されていなかったアイコンを表示
  • Loading branch information
yuta-ike authored Jan 18, 2022
2 parents 567fd69 + 75bd3c0 commit fec9352
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
6 changes: 4 additions & 2 deletions app/front/components/ChatRoom.vue
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,10 @@
</transition-group>
<div v-if="showGraph" class="graph-wrapper">
<div class="graph-action-area" style="text-align: end">
<button class="close-button" @click="showGraph = false">
<XIcon></XIcon>
<button @click="showGraph = false">
<span class="close-button">
<XIcon></XIcon>
</span>
</button>
</div>
<AnalysisGraph :topic-title="topic.title" :topic-id="topicId" />
Expand Down
10 changes: 6 additions & 4 deletions app/front/components/TopicHeader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,12 @@
</div>
<div class="title">{{ title }}</div>
<button
class="more-button"
aria-label="メニューを開閉する"
@click="isOpenDetails = !isOpenDetails"
>
<MoreVerticalIcon aria-hidden="true"></MoreVerticalIcon>
<span class="more-button">
<MoreVerticalIcon aria-hidden="true"></MoreVerticalIcon>
</span>
</button>
</div>
<div v-if="isOpenDetails" class="topic-header__details">
Expand Down Expand Up @@ -58,12 +59,13 @@
</button>
<button
v-show="isAdmin || isSpeaker"
class="topic-header__bookmark--close-icon"
aria-label="ピン留め解除"
title="ピン留め解除"
@click="removePinnedMessage"
>
<XCircleIcon size="1.2x" aria-hidden="true"></XCircleIcon>
<span class="topic-header__bookmark--close-icon">
<XCircleIcon size="1.2x" aria-hidden="true"></XCircleIcon>
</span>
</button>
</div>
</div>
Expand Down

0 comments on commit fec9352

Please sign in to comment.