Skip to content

Commit

Permalink
fix: extend uniform cards width
Browse files Browse the repository at this point in the history
  • Loading branch information
phoebus-84 committed Oct 10, 2024
1 parent 0e3778f commit 2744264
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/components/activity-card/d-activity-card.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
:host {
display: block;
@apply w-full;
}
2 changes: 1 addition & 1 deletion src/components/activity-card/d-activity-card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export class DActivityCard {
<Host>
<div class="items-start border-stroke flex gap-4 border-b p-2 rounded-lg w-full max-w-screen-sm">
<d-avatar src={this.logo} name={this.name} shape="square" />
<div class="flex flex-col gap-2">
<div class="flex flex-col gap-2 self-stretch w-full">
<h2>{this.message}</h2>
<d-text size="s" class="text-on-alt">
{this.description}
Expand Down

0 comments on commit 2744264

Please sign in to comment.