Skip to content

Commit

Permalink
Merge pull request #48 from pepabo/fix-table-stories-align-classname
Browse files Browse the repository at this point in the history
inhouse/tableのalign optionは物理ではなく論理プロパティ的なclass名で使う
  • Loading branch information
itoh4126 authored Jan 6, 2025
2 parents ca64012 + da5efea commit 506ac15
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/stories-web/src/table.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,25 +16,25 @@ Index.args = {
<tr>
<th></th>
<th>首都</th>
<th className="-align-right">人口</th>
<th className="-align-end">人口</th>
<th>言語</th>
</tr>
<tr>
<td>アメリカ合衆国</td>
<td>ワシントンD.C.</td>
<td className="-align-right">390,000,000</td>
<td className="-align-end">390,000,000</td>
<td>英語</td>
</tr>
<tr>
<td>スウェーデン</td>
<td>ストックホルム</td>
<td className="-align-right">9,000,000</td>
<td className="-align-end">9,000,000</td>
<td>スウェーデン語</td>
</tr>
<tr>
<td>日本</td>
<td>東京</td>
<td className="-align-right">120,000,000</td>
<td className="-align-end">120,000,000</td>
<td>日本語</td>
</tr>
</tbody>
Expand Down

0 comments on commit 506ac15

Please sign in to comment.