Skip to content

Commit

Permalink
Merge pull request #13162 from nextcloud/fix/12923/dont-shrink-button
Browse files Browse the repository at this point in the history
  • Loading branch information
Antreesy authored Aug 28, 2024
2 parents 6b8966c + 4de9ab4 commit 5e54f1c
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 5e54f1c

Please sign in to comment.