Consolidates UI components into a centralized components.css file Removes duplicate styles across multiple CSS files Adds utility classes in a new utilities.css file Reduces overall CSS complexity and improves maintainability Removes quick-stats.css and redistributes its styles Updates layout and stylesheet references accordingly
16 lines
601 B
Text
16 lines
601 B
Text
@model PlanTempus.Application.Features.Dashboard.Components.NotificationListViewModel
|
|
|
|
<swp-card data-key="@Model.Key">
|
|
<swp-section-header>
|
|
<swp-section-label>@Model.Title</swp-section-label>
|
|
<swp-section-action>@Model.ActionText</swp-section-action>
|
|
</swp-section-header>
|
|
<swp-card-content>
|
|
<swp-notification-list>
|
|
@foreach (var notificationKey in Model.NotificationKeys)
|
|
{
|
|
@await Component.InvokeAsync("NotificationItem", notificationKey)
|
|
}
|
|
</swp-notification-list>
|
|
</swp-card-content>
|
|
</swp-card>
|