Skip to content

Commit

Permalink
Use --hacs-bade-color (with fallback to --accent-color) for list/save…
Browse files Browse the repository at this point in the history
… icons
  • Loading branch information
ludeeus committed Dec 29, 2019
1 parent 8e0d779 commit a211c6e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/misc/CustomRepositories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -223,14 +223,14 @@ export class CustomRepositories extends LitElement {
bottom: 5px;
}
.saveicon {
color: var(--primary-color);
color: var(--hacs-badge-color, --accent-color);
position: absolute;
right: 0;
bottom: 24px;
cursor: pointer;
}
.listicon {
color: var(--primary-color);
color: var(--hacs-badge-color, --accent-color);
right: 0px;
position: absolute;
cursor: pointer;
Expand Down
2 changes: 1 addition & 1 deletion src/misc/HiddenRepositories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export class HiddenRepositories extends LitElement {
display: flex;
}
.listicon {
color: var(--primary-color);
color: var(--hacs-badge-color, --accent-color);
left: 0px;
}
`
Expand Down

0 comments on commit a211c6e

Please sign in to comment.