fix(webhooks): styling
continuous-integration/drone/pr Build is passing Details

This commit is contained in:
kolaente 2023-10-20 12:32:55 +02:00
parent 779aad1b2d
commit 0e5415a2c9
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 9 additions and 1 deletions

View File

@ -121,6 +121,7 @@ function validateSelectedEvents() {
<create-edit
:title="$t('project.webhooks.title')"
:has-primary-action="false"
:wide="true"
>
<x-button
v-if="!(webhooks?.length === 0 || showNewForm)"
@ -178,7 +179,7 @@ function validateSelectedEvents() {
<fancycheckbox
v-for="event in availableEvents"
:key="event"
class="mr-2"
class="available-events-check"
v-model="newWebhookEvents[event]"
@update:model-value="validateSelectedEvents"
>
@ -245,3 +246,10 @@ function validateSelectedEvents() {
</modal>
</create-edit>
</template>
<style lang="scss" scoped>
.available-events-check {
margin-right: .5rem;
width: 12.5rem;
}
</style>