Skip to content

Commit

Permalink
💄 fix: アイコンサイズを修正、paddingをレスポンシブに
Browse files Browse the repository at this point in the history
  • Loading branch information
reiroop committed Sep 27, 2024
1 parent bb1b295 commit fc1c413
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/requests/RequestItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const totalAmount = computed(
<div class="flex flex-col gap-2">
<div class="flex items-center justify-end gap-x-4 flex-wrap">
<div class="flex items-center gap-1">
<UserIcon class="h-7" :name="userMap[request.createdBy]" />
<UserIcon class="max-w-7" :name="userMap[request.createdBy]" />
<span>{{ userMap[request.createdBy] }}</span>
</div>
<span v-if="request.group"> {{ request.group.name }} </span>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/RequestsPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ watch(
</script>

<template>
<div class="max-w-260 mx-auto p-8 flex flex-col gap-7">
<div class="max-w-260 mx-auto p-4 sm:p-8 flex flex-col gap-7">
<div class="min-w-160 flex flex-col">
<div class="relative flex w-full items-center justify-start gap-7">
<h1 class="text-center text-3xl">申請一覧</h1>
Expand Down

0 comments on commit fc1c413

Please sign in to comment.