summaryrefslogtreecommitdiff
path: root/packages/frontend/src/components/MkSystemWebhookEditor.vue
diff options
context:
space:
mode:
authorsyuilo <4439005+syuilo@users.noreply.github.com>2024-07-30 20:58:25 +0900
committersyuilo <4439005+syuilo@users.noreply.github.com>2024-07-30 20:58:25 +0900
commit63f9c271ca9958abb00d879be01a045d25d261d1 (patch)
tree2a53fbf79fe3c9a9c85a9e779ff0bf23679a7fb3 /packages/frontend/src/components/MkSystemWebhookEditor.vue
parentBump version to 2024.7.0-rc.8 (diff)
downloadsharkey-63f9c271ca9958abb00d879be01a045d25d261d1.tar.gz
sharkey-63f9c271ca9958abb00d879be01a045d25d261d1.tar.bz2
sharkey-63f9c271ca9958abb00d879be01a045d25d261d1.zip
:art:
Diffstat (limited to 'packages/frontend/src/components/MkSystemWebhookEditor.vue')
-rw-r--r--packages/frontend/src/components/MkSystemWebhookEditor.vue5
1 files changed, 3 insertions, 2 deletions
diff --git a/packages/frontend/src/components/MkSystemWebhookEditor.vue b/packages/frontend/src/components/MkSystemWebhookEditor.vue
index a141b4ff74..cad2e99e4d 100644
--- a/packages/frontend/src/components/MkSystemWebhookEditor.vue
+++ b/packages/frontend/src/components/MkSystemWebhookEditor.vue
@@ -19,8 +19,8 @@ SPDX-License-Identifier: AGPL-3.0-only
{{ mode === 'create' ? i18n.ts._webhookSettings.createWebhook : i18n.ts._webhookSettings.modifyWebhook }}
</template>
- <div>
- <MkSpacer :marginMin="20" :marginMax="28">
+ <div style="display: flex; flex-direction: column; min-height: 100%;">
+ <MkSpacer :marginMin="20" :marginMax="28" style="flex-grow: 1;">
<MkLoading v-if="loading !== 0"/>
<div v-else :class="$style.root" class="_gaps_m">
<MkInput v-model="title">
@@ -226,6 +226,7 @@ onMounted(async () => {
.footer {
position: sticky;
+ z-index: 10000;
bottom: 0;
left: 0;
padding: 12px;