Skip to content

Commit

Permalink
Add outlined to repository cards (#596)
Browse files Browse the repository at this point in the history
  • Loading branch information
ludeeus authored May 28, 2022
1 parent 9ecd1b3 commit 4bdcaf3
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/components/hacs-repository-card.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export class HacsRepositoryCard extends LitElement {
protected render(): TemplateResult | void {
const path = this.repository.local_path.split("/");
return html`
<ha-card class=${classMap(this._borderClass)} ?narrow=${this.narrow}>
<ha-card class=${classMap(this._borderClass)} ?narrow=${this.narrow} outlined>
<div class="card-content">
<div class="group-header">
<div class="status-header ${classMap(this._headerClass)}">${this._headerTitle}</div>
Expand Down Expand Up @@ -317,10 +317,6 @@ export class HacsRepositoryCard extends LitElement {
flex-direction: column;
height: 100%;
width: 480px;
border-style: solid;
border-width: min(var(--ha-card-border-width, 1px), 10px);
border-color: transparent;
border-radius: var(--ha-card-border-radius, 4px);
}
.title {
Expand Down

0 comments on commit 4bdcaf3

Please sign in to comment.