diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-12-29 04:38:25 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-12-29 04:38:25 +0900 |
| commit | c7308f4178bf61a17e50a6789b78dc8672c7895a (patch) | |
| tree | f4f93063ef144078d16409847c283f28e55b0d2a /packages/client/src | |
| parent | update deps (diff) | |
| download | misskey-c7308f4178bf61a17e50a6789b78dc8672c7895a.tar.gz misskey-c7308f4178bf61a17e50a6789b78dc8672c7895a.tar.bz2 misskey-c7308f4178bf61a17e50a6789b78dc8672c7895a.zip | |
fix(client): fix sidebar style
Diffstat (limited to 'packages/client/src')
| -rw-r--r-- | packages/client/src/ui/_common_/sidebar.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/client/src/ui/_common_/sidebar.vue b/packages/client/src/ui/_common_/sidebar.vue index bf560e8dd6..fa712ba45d 100644 --- a/packages/client/src/ui/_common_/sidebar.vue +++ b/packages/client/src/ui/_common_/sidebar.vue @@ -285,7 +285,7 @@ export default defineComponent({ } &:before { - width: auto; + width: min-content; height: 100%; aspect-ratio: 1/1; border-radius: 8px; @@ -301,7 +301,7 @@ export default defineComponent({ &.post:before { width: calc(100% - 28px); - height: auto; + height: min-content; aspect-ratio: 1/1; border-radius: 100%; } |