diff --git a/.claude/settings.local.json b/.claude/settings.local.json index 4207065..1ae95ad 100644 --- a/.claude/settings.local.json +++ b/.claude/settings.local.json @@ -31,7 +31,11 @@ "mcp__ide__getDiagnostics", "Read(//c/Users/Pratik/Desktop/code/**)", "Bash(cat:*)", - "Bash(git add:*)" + "Bash(git add:*)", + "Bash(git commit:*)", + "Bash(git merge:*)", + "Bash(git rm:*)", + "Bash(git checkout:*)" ], "deny": [], "ask": [] diff --git a/frontend/src/app/app.component.scss b/frontend/src/app/app.component.scss index 9454dc5..29b9935 100644 --- a/frontend/src/app/app.component.scss +++ b/frontend/src/app/app.component.scss @@ -31,13 +31,22 @@ } .header-info { - mat-chip-set { - mat-chip { - background-color: rgba(255, 255, 255, 0.2) !important; - color: white !important; + ::ng-deep { + mat-chip-set { + mat-chip { + background-color: rgba(255, 255, 255, 0.2) !important; - mat-icon { - color: white !important; + .mdc-evolution-chip__action { + color: white !important; + } + + .mdc-evolution-chip__text-label { + color: white !important; + } + + mat-icon { + color: white !important; + } } } } @@ -146,11 +155,19 @@ margin-bottom: 20px; align-items: center; flex-wrap: wrap; + + // Ensure buttons have proper styling + button { + &[color="accent"] { + background-color: #10b981 !important; + color: white !important; + } + } } .count-badge { - background: #1e3a8a; - color: #93c5fd; + background: #3b82f6; + color: #ffffff; padding: 8px 16px; border-radius: 20px; font-size: 13px; @@ -246,25 +263,27 @@ } .filename-cell { - display: flex; + display: inline-flex; align-items: center; gap: 8px; font-weight: 500; + color: #cbd5e1; .file-icon { color: #60a5fa; font-size: 20px; width: 20px; height: 20px; + flex-shrink: 0; } } .type-chip { - background-color: #1e3a8a !important; - color: #93c5fd !important; + background-color: #3b82f6 !important; + color: #ffffff !important; font-weight: 600; font-size: 11px; - padding: 4px 8px; + padding: 4px 12px; height: auto; } diff --git a/frontend/src/app/services/artifact.service.ts b/frontend/src/app/services/artifact.service.ts index 64b7234..d042efc 100644 --- a/frontend/src/app/services/artifact.service.ts +++ b/frontend/src/app/services/artifact.service.ts @@ -14,7 +14,7 @@ export class ArtifactService { constructor(private http: HttpClient) { } - getArtifacts(limit: number = 25, offset: number = 0): Observable { + getArtifacts(limit: number = 1000, offset: number = 0): Observable { const params = new HttpParams() .set('limit', limit.toString()) .set('offset', offset.toString());