mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-25 19:37:34 -07:00
This commit is contained in:
parent
fb7fac6470
commit
18499726d2
2 changed files with 6 additions and 1 deletions
|
@ -5,6 +5,7 @@ ChangeLog (Release Notes)
|
|||
unreleased
|
||||
----------
|
||||
* Fix: モバイル版のタイムラインからリアクションやメニューを開けない
|
||||
* デザインの調整
|
||||
|
||||
2515 (2017/08/30)
|
||||
-----------------
|
||||
|
|
|
@ -190,7 +190,7 @@
|
|||
<button class={ reacted: p.my_reaction != null } onclick={ react } ref="reactButton">
|
||||
<i class="fa fa-plus"></i><p class="count" if={ p.reactions_count > 0 }>{ p.reactions_count }</p>
|
||||
</button>
|
||||
<button onclick={ menu } ref="menuButton">
|
||||
<button class="menu" onclick={ menu } ref="menuButton">
|
||||
<i class="fa fa-ellipsis-h"></i>
|
||||
</button>
|
||||
</footer>
|
||||
|
@ -454,6 +454,10 @@
|
|||
&.reacted
|
||||
color $theme-color
|
||||
|
||||
&.menu
|
||||
@media (max-width 350px)
|
||||
display none
|
||||
|
||||
</style>
|
||||
<script>
|
||||
import compile from '../../common/scripts/text-compiler';
|
||||
|
|
Loading…
Reference in a new issue