Skip to content

Remove text-off-white on table-header Button variant #2789

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

Merged
merged 1 commit into from
Jun 26, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/lib/holocene/button.svelte
Original file line number Diff line number Diff line change
@@ -31,7 +31,7 @@
ghost:
'bg-transparent border-transparent text-primary hover:surface-interactive-ghost focus-visible:surface-interactive-ghost focus-visible:ring-primary/70',
'table-header':
'bg-transparent border-transparent text-off-white focus-visible:ring-primary/70 focus-visible:border-transparent',
'bg-transparent border-transparent focus-visible:ring-primary/70 focus-visible:border-transparent',
},
size: {
xs: 'h-8 text-xs px-2 py-1',

Unchanged files with check annotations Beta

// eslint-disable-next-line playwright/no-skipped-test
test.skip('Call Stack With Completed Workflow', () => {
test('should show No Call Stack for completed workflow', async ({ page }) => {

Check warning on line 11 in tests/e2e/call-stack.spec.ts

GitHub Actions / lint

Test has no assertions
await page
.getByText('completed-workflow')
.click({ position: { x: 0, y: 0 } });
// eslint-disable-next-line playwright/no-skipped-test
test.skip('Call Stack with Running Workflow', () => {
test('should show call stack for running workflow', async ({ page }) => {

Check warning on line 26 in tests/e2e/call-stack.spec.ts

GitHub Actions / lint

Test has no assertions
await page
.getByText('running-workflow')
.click({ position: { x: 0, y: 0 } });