diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2020-12-27 10:42:38 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2020-12-27 10:42:38 +0900 |
| commit | 2f6187a26ac20e51a34274d3ae7bcb2bbb8de9cc (patch) | |
| tree | 637114bee24f9023f6fae48173f255589e0a0ca3 /src/client/ui/deck.vue | |
| parent | :sparkles: (diff) | |
| download | misskey-2f6187a26ac20e51a34274d3ae7bcb2bbb8de9cc.tar.gz misskey-2f6187a26ac20e51a34274d3ae7bcb2bbb8de9cc.tar.bz2 misskey-2f6187a26ac20e51a34274d3ae7bcb2bbb8de9cc.zip | |
モバイルで投稿ボタン復活するなど
Diffstat (limited to 'src/client/ui/deck.vue')
| -rw-r--r-- | src/client/ui/deck.vue | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/client/ui/deck.vue b/src/client/ui/deck.vue index a31fcebcaf..0cbfd7a48b 100644 --- a/src/client/ui/deck.vue +++ b/src/client/ui/deck.vue @@ -204,6 +204,10 @@ export default defineComponent({ border-radius: 100%; box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12); font-size: 22px; + + @media (min-width: ($nav-hide-threshold + 1px)) { + display: none; + } } > .post { @@ -215,10 +219,6 @@ export default defineComponent({ background: var(--panel); color: var(--fg); - @media (min-width: ($nav-hide-threshold + 1px)) { - display: none; - } - &:hover { background: var(--X2); } |