-
Notifications
You must be signed in to change notification settings - Fork 0
chore: update some message #73
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -17,7 +17,7 @@ type Props = { | |||||
| const Lent: FC<Props> = (props: Props) => { | ||||||
| return ( | ||||||
| <> | ||||||
| <SubTitle subTitle="受け取る金額 一覧" /> | ||||||
| <SubTitle subTitle="受け取る合計金額 一覧" /> | ||||||
|
||||||
| <SubTitle subTitle="受け取る合計金額 一覧" /> | |
| <SubTitle subTitle="受け取る金額一覧" /> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -17,5 +17,19 @@ | |
| flex-direction: column; | ||
| gap: var(--space-base); | ||
| text-align: center; | ||
| align-items: center; | ||
| } | ||
| } | ||
|
|
||
| .button { | ||
| display: block; | ||
| text-decoration: none; | ||
| text-align: center; | ||
| font-size: var(--text-lg); | ||
| color: var(--background-color-base); | ||
| background-color: var(--color-base); | ||
| padding: 0 var(--space-sm); | ||
| border: 6px double var(--background-color-base); | ||
| cursor: pointer; | ||
| width: 150px; | ||
| } | ||
|
Comment on lines
+24
to
+35
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The subtitle now says "返す合計金額 一覧" (List of total amounts to pay back), but the component displays individual amounts to each counterparty, not a summed total. The word "合計" (total) might be ambiguous - it could mean either "all amounts collectively" or "summed total". Consider whether "返す金額一覧" (List of amounts to pay back) would be clearer, or if showing an actual total sum would better match the new subtitle.