diff --git a/css/styles.css b/css/styles.css index 3ad374a..cec25fd 100644 --- a/css/styles.css +++ b/css/styles.css @@ -642,6 +642,7 @@ html, body { .project-card { background: white; border: 1px solid var(--border-color); + border-top: 4px solid #3b82f6; border-radius: 0.5rem; padding: 1.5rem; cursor: pointer; diff --git a/e2e/app.spec.ts b/e2e/app.spec.ts index 9cfde54..57505ac 100644 --- a/e2e/app.spec.ts +++ b/e2e/app.spec.ts @@ -145,7 +145,7 @@ test.describe('Task Manager App', () => { await page.click('#addProjectBtn'); await page.fill('#projectName', 'Website Redesign'); await page.fill('#projectDescription', 'Redo the company website'); - await page.selectOption('#projectColor', 'green'); + await page.fill('#projectColor', '#10b981'); await page.click('#projectForm button[type="submit"]'); await expect(page.locator('#projectModal')).not.toHaveClass(/active/); diff --git a/index.html b/index.html index 5d6c76e..e5f3534 100644 --- a/index.html +++ b/index.html @@ -295,13 +295,7 @@