diff options
Diffstat (limited to 'src/web')
| -rw-r--r-- | src/web/app/mobile/tags/timeline.tag | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/web/app/mobile/tags/timeline.tag b/src/web/app/mobile/tags/timeline.tag index bc01394554..62d47678ac 100644 --- a/src/web/app/mobile/tags/timeline.tag +++ b/src/web/app/mobile/tags/timeline.tag @@ -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'; |