Skip to content

Commit

Permalink
change colors to be more neutral for some buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
seiyria committed Jun 29, 2024
1 parent ddaa6b0 commit 57acf8b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/card/card.page.html
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ <h1>{{ cardData.name }}</h1>
<ion-item>
<ion-label text-wrap>
@for(tag of cardData.tags; track tag) {
<ion-chip color="primary" (click)="searchTag(tag)">{{ tag }}</ion-chip>
<ion-chip color="secondary" (click)="searchTag(tag)">{{ tag }}</ion-chip>
}
</ion-label>
</ion-item>
Expand Down
2 changes: 1 addition & 1 deletion src/app/syntax/syntax.page.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ <h5>{{ 'Common.AppName' | translate }} {{ 'Pages.SyntaxHelp.Subheader' | transla
<ion-row>
@for(operator of allOperators; track $index) {
<ion-col [sizeXs]="12" [sizeMd]="3">
<ion-button shape="round" expand="full" fill="outline" (click)="navigateTo(operator.id)">
<ion-button shape="round" expand="full" fill="outline" color="secondary" (click)="navigateTo(operator.id)">
<ion-icon [name]="operator.icon" slot="start"></ion-icon>
{{ 'Pages.SyntaxHelp.Operators.' + operator.name + '.Name' | translate }}
</ion-button>
Expand Down

0 comments on commit 57acf8b

Please sign in to comment.