fix(core): table outer column padding and Card title typography#186
Merged
Conversation
- Table: first column pl-6, last pr-6; middle cells stay px-2; cells use py-2 - Card.Header title: text-lg + text-card-foreground to match other cards - ActionPanel: drop redundant text-lg on Card.Header - Update snapshots; add patch changeset Made-with: Cursor
IzumiSy
approved these changes
Apr 20, 2026
itsprade
added a commit
that referenced
this pull request
May 7, 2026
Table.Cell gained `astw:first:pl-6` and `astw:last:pr-6` in PR #186 (April). LineItems uses raw <th> for headers but had been wrapping data cells in Table.Cell, so the data row's first/last column picked up 24px outer padding the headers don't have, breaking horizontal alignment between header and rows after pulling main. Switched the data cell to a raw <td> with the same className the rest of the LineItems table already uses for headers/rows. Symmetric again. Also picks up an incidental workspace rename in package.json (dev:next now filters @tailor-platform/app-shell instead of the renamed app-module). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
first:pl-6), last column 24px right inset (last:pr-6); interior cells keeppx-2; body cells usepy-2.Card.Headertitles usetext-lg,leading-none, andtext-card-foregroundto align with DescriptionCard, ActivityCard, and ActionPanel.text-lgfromCard.Header(layoutpx-8unchanged).Notes
@tailor-platform/app-shell.Test plan
pnpm --filter @tailor-platform/app-shell test(table + card suites)Made with Cursor