Skip to content

Commit

Permalink
Fix border radius style (#386)
Browse files Browse the repository at this point in the history
  • Loading branch information
ludeeus authored Feb 14, 2021
1 parent 6ff9291 commit 8e694d7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/hacs-repository-card.ts
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,7 @@ export class HacsRepositoryCard extends LitElement {
border-style: solid;
border-width: min(var(--ha-card-border-width, 1px), 10px);
border-color: transparent;
border-radius: var(--ha-card-border-radius, 4px);
}
hacs-chip {
Expand Down Expand Up @@ -335,7 +336,6 @@ export class HacsRepositoryCard extends LitElement {
.new-header {
background-color: var(--hcv-color-new);
color: var(--hcv-text-color-on-background);
border-radius: var(--ha-card-border-radius, 4px);
}
.issue-header {
Expand Down Expand Up @@ -370,8 +370,8 @@ export class HacsRepositoryCard extends LitElement {
font-weight: 300;
text-align: center;
left: 0;
border-top-left-radius: var(--ha-card-border-radius);
border-top-right-radius: var(--ha-card-border-radius);
border-top-left-radius: var(--ha-card-border-radius, 4px);
border-top-right-radius: var(--ha-card-border-radius, 4px);
}
ha-card[narrow] {
Expand Down

0 comments on commit 8e694d7

Please sign in to comment.