Skip to content

Commit

Permalink
💄 fix: RequestItem.vueのStatusChipの右のgapを調整
Browse files Browse the repository at this point in the history
StatusChipの左にあったスペースを削除し、右のスペースを20pxに変更しました。
  • Loading branch information
reiroop committed Aug 28, 2024
1 parent 9a47567 commit 297bfb0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/requests/RequestItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ const totalAmount = computed(
</script>

<template>
<RouterLink class="flex px-6 py-4" :to="'/requests/' + request.id">
<div class="mx-2 flex items-start justify-center">
<RouterLink class="flex px-6 py-4 gap-5" :to="'/requests/' + request.id">
<div class="flex items-start justify-center">
<StatusChip :status="request.status" />
</div>
<div class="flex flex-grow flex-wrap">
Expand Down

0 comments on commit 297bfb0

Please sign in to comment.