Skip to content

Commit

Permalink
refactor: set card height to 100% in grid layout
Browse files Browse the repository at this point in the history
  • Loading branch information
ruibaby committed Oct 18, 2024
1 parent e7749cd commit 3230e24
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/hyperlink-card/src/hyperlink-card.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export class HyperlinkCard extends LitElement {
<a
href=${this.href}
target=${this.target}
class="border border-card relative flex rounded-xl overflow-hidden border-hover-card bg-card transition-all"
class="border h-full border-card relative flex rounded-xl overflow-hidden border-hover-card bg-card transition-all"
>
${this.siteData
? html` ${this.renderCard()} `
Expand All @@ -109,4 +109,4 @@ declare global {
interface HTMLElementTagNameMap {
'hyperlink-card': HyperlinkCard;
}
}
}

0 comments on commit 3230e24

Please sign in to comment.