fix: add explicit border-border to border-width-only utilities#321
Merged
Conversation
erickteowarang
approved these changes
Jun 17, 2026
Components using directional border-width utilities (border-b, border-t,
border-l, border-r) relied on the global `* { border-color: var(--border) }`
rule in `@layer base`. When consumers import Tailwind CSS after app-shell
styles, Tailwind's preflight resets border-color via shorthand, causing
thick dark borders (currentColor).
Adding explicit `astw:border-border` at the utility layer ensures the
correct color regardless of CSS import order.
Affected components: Sheet, Table, CsvImporter, CommandPalette, DataTable,
DataTable.Toolbar.
18e11bf to
87e054e
Compare
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
Components using directional border-width utilities (
border-b,border-t,border-l,border-r) relied on the global* { border-color: var(--border) }rule in@layer base. When consumers import Tailwind CSS after app-shell styles, Tailwind's preflight resetsborder-colorvia shorthand, causing thick dark borders (currentColor).This is a follow-up to #317 which fixed
astw:border(all-side) usages but missed directional variants.Screen shots (bugs to be fixed in this PR)
Unnecessary black borders.
Table
Sheet
CSV Importer
Fix
Adding explicit
astw:border-borderat the utility layer ensures the correct color regardless of CSS import order.Affected Components
packages/core/src/components/sheet.tsxpackages/core/src/components/table.tsxpackages/core/src/components/csv-importer/CsvImporter.tsxpackages/core/src/components/command-palette.tsxpackages/core/src/components/data-table/data-table.tsxpackages/core/src/components/data-table/toolbar.tsxTesting
All 60 test files (1120 tests) pass. 8 snapshots updated to reflect the added
border-borderclass.