Skip to content

Commit 5c2c210

Browse files
committed
Add icon and fix login text contrast
1 parent ab90648 commit 5c2c210

17 files changed

Lines changed: 75 additions & 65 deletions

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
.DS_Store
12
# Logs
23
logs
34
*.log

.gitignore copy

Lines changed: 0 additions & 24 deletions
This file was deleted.

index.html

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
5-
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
5+
<link rel="icon" type="image/svg+xml" href="/images/favicon.ico" />
6+
<link rel="apple-touch-icon" href="/images/ebb-logo.png" />
67
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Vite + React + TS</title>
8+
<meta name="theme-color" content="#111827" />
9+
<title>Ebb Product Board</title>
810
</head>
911
<body>
1012
<div id="root"></div>

public/images/downloaded/README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Downloaded Images
2+
3+
This directory contains the original Ebb logo images that were provided by the user.
4+
5+
The logo might not be properly represented in our SVG versions, so these files are kept for reference.
6+
7+
For production, use the versions that match the brand guidelines:
8+
- `/public/favicon.svg` - For browser tab favicon
9+
- `/public/images/ebb-logo.svg` - For square logo usage
10+
- `/public/images/ebb-logo-text.svg` - For logo with text usage

public/images/ebb-logo-text.svg

Lines changed: 11 additions & 0 deletions
Loading

public/images/ebb-logo.png

47.9 KB
Loading

public/images/ebb-logo.svg

Lines changed: 6 additions & 0 deletions
Loading

public/images/favicon.ico

15 KB
Binary file not shown.

public/vite.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/components/comments/CommentForm.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export default function CommentForm({
3535
onChange={(e) => setContent(e.target.value)}
3636
placeholder={placeholder}
3737
rows={2}
38-
className="w-full p-2 rounded-md border-2 border-border bg-card text-foreground text-sm"
38+
className="w-full p-2 rounded-md border-2 border-border bg-card text-gray-900 dark:text-gray-100 text-sm placeholder:text-gray-500 dark:placeholder:text-gray-400"
3939
disabled={isSubmitting}
4040
/>
4141
<div className="flex justify-end mt-2">

0 commit comments

Comments
 (0)