Merge pull request #135 from btcpayserver/ft/fix_public_image
Some checks failed
Publish Docker image / Push Docker image to Docker Hub (push) Has been cancelled

Allow public logo box to capture all image content
This commit is contained in:
thgO.O 2025-12-22 12:47:15 -03:00 committed by GitHub
commit 7be04ac344
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -11,7 +11,7 @@
@if (!string.IsNullOrEmpty(Model.PluginLogo))
{
<img src="@Model.PluginLogo" alt="@Model.PluginTitle" style="width: 60px; height: 60px; object-fit: cover; border-radius: 4px;" />
<img src="@Model.PluginLogo" alt="@Model.PluginTitle" style="width:60px; height:60px; object-fit:contain; border-radius:4px;" />
}
else
{