style: revert aggressive wildcard overrides in CSS and restore stable Blazor theme configuration
TaxBaik CI/CD / build-and-deploy (push) Successful in 53s

This commit is contained in:
2026-06-30 22:34:34 +09:00
parent c765db37b3
commit abd7bbf016
2 changed files with 22 additions and 170 deletions
+3 -5
View File
@@ -129,9 +129,7 @@ test.describe('admin CRM pages', () => {
await expect(page.locator('.admin-grid, .mud-alert')).toBeVisible({ timeout: 15000 });
const addButton = page.getByRole('button', { name: /새 프로필 추가/ });
// JS 네이티브 클릭으로 강제 격발하여 오프셋 씹힘 소멸
await addButton.evaluate(el => (el as HTMLButtonElement).click());
await addButton.click();
// 대화상자(MudDialog) 자체의 노출 대기
await expect(page.locator('.mud-dialog')).toBeVisible({ timeout: 5000 });
@@ -153,7 +151,7 @@ test.describe('admin CRM pages', () => {
await expect(page.locator('.admin-grid, .mud-alert')).toBeVisible({ timeout: 15000 });
const addButton = page.getByRole('button', { name: /새 일정 추가/ });
await addButton.evaluate(el => (el as HTMLButtonElement).click());
await addButton.click();
await expect(page.locator('.mud-dialog')).toBeVisible({ timeout: 5000 });
@@ -171,7 +169,7 @@ test.describe('admin CRM pages', () => {
await expect(page.locator('.admin-grid, .mud-alert')).toBeVisible({ timeout: 15000 });
const addButton = page.getByRole('button', { name: /새 계약 추가/ });
await addButton.evaluate(el => (el as HTMLButtonElement).click());
await addButton.click();
await expect(page.locator('.mud-dialog')).toBeVisible({ timeout: 5000 });