summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2022-02-12 17:28:33 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2022-02-12 17:28:33 +0900
commit1c6ab5447d591f4f6e876b59f6e104fcf30869a3 (patch)
tree82fa3e105d38da146714de9b6447b729774fa876
parent:art: (diff)
downloadmisskey-1c6ab5447d591f4f6e876b59f6e104fcf30869a3.tar.gz
misskey-1c6ab5447d591f4f6e876b59f6e104fcf30869a3.tar.bz2
misskey-1c6ab5447d591f4f6e876b59f6e104fcf30869a3.zip
fix(client): 一部環境でサイドバーの投稿ボタンが表示されない問題を修正
-rw-r--r--CHANGELOG.md3
-rw-r--r--packages/client/src/ui/_common_/sidebar.vue2
2 files changed, 3 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index eb475ba619..4469a1496f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -16,8 +16,9 @@ You should also include the user name that made the change.
- クライアント: テーマを追加 @syuilo
### Bugfixes
-- クライアント: デバイスのスクリーンのセーフエリアを考慮するように @syuilo
- クライアント: ソフトミュートですべてがマッチしてしまう場合があるのを修正 @tamaina
+- クライアント: デバイスのスクリーンのセーフエリアを考慮するように @syuilo
+- クライアント: 一部環境でサイドバーの投稿ボタンが表示されない問題を修正 @syuilo
## 12.106.3 (2022/02/11)
diff --git a/packages/client/src/ui/_common_/sidebar.vue b/packages/client/src/ui/_common_/sidebar.vue
index 94baacbee9..f33d8f899e 100644
--- a/packages/client/src/ui/_common_/sidebar.vue
+++ b/packages/client/src/ui/_common_/sidebar.vue
@@ -305,7 +305,7 @@ export default defineComponent({
&.post:before {
width: calc(100% - 28px);
- height: min-content;
+ height: auto;
aspect-ratio: 1/1;
border-radius: 100%;
}