Skip to content

Commit

Permalink
style(InvitationHandler): don't shrink action buttons
Browse files Browse the repository at this point in the history
Signed-off-by: Antreesy <[email protected]>
  • Loading branch information
Antreesy committed Aug 28, 2024
1 parent 6b8966c commit 4de9ab4
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/components/LeftSidebar/InvitationHandler.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
:reference-limit="0" />
</div>
<NcButton type="tertiary"
class="inbox__item-button"
:aria-label="t('spreed', 'Decline invitation')"
:title="t('spreed', 'Decline invitation')"
:disabled="!!item.loading"
Expand All @@ -38,6 +39,7 @@
</template>
</NcButton>
<NcButton type="primary"
class="inbox__item-button"
:aria-label="t('spreed', 'Accept invitation')"
:title="t('spreed', 'Accept invitation')"
:disabled="!!item.loading"
Expand Down Expand Up @@ -239,6 +241,10 @@ export default {
color: var(--color-text-maxcontrast);
}
}

&-button {
flex-shrink: 0;
}
}
}
</style>

0 comments on commit 4de9ab4

Please sign in to comment.