btcpayserver/BTCPayServer/Views/UIError/_LayoutError.cshtml
d11n 17f3b4125b
Add option to customize the instance logo (#4258)
* Add option to customize the instance logo


Custom logo for BTCPay instances

* Incorporate SVGUse helper
2022-11-14 22:29:23 +09:00

26 lines
575 B
Plaintext

@{
Layout = "_LayoutSimple";
}
<style>
.main-logo { height: 4rem; width: 18rem; }
.main-logo-btcpay .main-logo-btcpay--small { display: none; }
.lead img { max-width: 100%; }
</style>
<div class="text-center">
<a asp-controller="UIHome" asp-action="Index" class="d-inline-block navbar-brand mx-0 mb-5">
<vc:main-logo />
</a>
<h1 class="text-uppercase my-3">@ViewData["Title"]</h1>
<div class="lead text-center">
@RenderBody()
</div>
<hr class="primary my-5" />
<partial name="_BTCPaySupporters" />
</div>