Files
hrynco-notification-service/HrynCo.NotificationService.Web/Views/Shared/_EditorLayout.cshtml
T
Anatolii Grynchuk 936d41c2f1 feat: improved admin UI styles and layout
- Max-width 860px on editor card
- Two-column row for ServiceName/Key/Language fields
- Gradient card header, proper shadow, grey footer
- Footer buttons right-aligned
- Smaller uppercase table headers, better typography
- Overhauled admin.css with CSS variables and cleaner rules

Ref: IT-628

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-05-02 02:51:58 +03:00

17 lines
499 B
Plaintext

@{
Layout = "~/Views/Shared/_Layout.cshtml";
}
<div class="editor-wrapper">
<div class="card editor-card">
<div class="card-header editor-card-header-bar">
<i class="bi bi-pencil-square me-2"></i>@ViewData["EditorTitle"]
</div>
<div class="card-body editor-card-body">
@RenderBody()
</div>
<div class="card-footer editor-card-footer">
@RenderSection("FormActions", required: false)
</div>
</div>
</div>