first commit
This commit is contained in:
12
frontend/src/app/shared/ui/section-card.component.html
Normal file
12
frontend/src/app/shared/ui/section-card.component.html
Normal file
@@ -0,0 +1,12 @@
|
||||
<p-card styleClass="section-card">
|
||||
<div class="section-card__header" *ngIf="title || subtitle">
|
||||
<div>
|
||||
<h3 class="section-card__title" *ngIf="title">{{ title }}</h3>
|
||||
<p class="section-card__subtitle" *ngIf="subtitle">{{ subtitle }}</p>
|
||||
</div>
|
||||
<div class="section-card__actions">
|
||||
<ng-content select="[card-actions]"></ng-content>
|
||||
</div>
|
||||
</div>
|
||||
<ng-content></ng-content>
|
||||
</p-card>
|
||||
Reference in New Issue
Block a user