diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-10-14 18:51:15 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-10-14 18:51:15 +0900 |
| commit | 955b3e313bbf311dd565d96bc04545c9be96e6bb (patch) | |
| tree | 498314f3b8ad768181d5664ba559be00090d989f /src/client/components/post-form.vue | |
| parent | :art: (diff) | |
| download | misskey-955b3e313bbf311dd565d96bc04545c9be96e6bb.tar.gz misskey-955b3e313bbf311dd565d96bc04545c9be96e6bb.tar.bz2 misskey-955b3e313bbf311dd565d96bc04545c9be96e6bb.zip | |
:art:
Diffstat (limited to 'src/client/components/post-form.vue')
| -rw-r--r-- | src/client/components/post-form.vue | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/client/components/post-form.vue b/src/client/components/post-form.vue index 4ec09e76db..3ff1dfe0df 100644 --- a/src/client/components/post-form.vue +++ b/src/client/components/post-form.vue @@ -1,6 +1,6 @@ <template> <div class="gafaadew" :class="{ modal, _popup: modal }" - v-size="{ max: [500] }" + v-size="{ max: [310, 500] }" @dragover.stop="onDragover" @dragenter="onDragenter" @dragleave="onDragleave" @@ -914,5 +914,17 @@ export default defineComponent({ } } } + + &.max-width_310px { + > .form { + > footer { + > button { + font-size: 14px; + width: 44px; + height: 44px; + } + } + } + } } </style> |