Merge pull request #3847 from abpframework/alper/overwrite-logo

Add LogoReverseUrl for black backgrounds
pull/3850/head
Halil İbrahim Kalkan 6 years ago committed by GitHub
commit 540770c949
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -7,5 +7,7 @@ namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Components
public virtual string AppName => "MyApplication";
public virtual string LogoUrl => null;
public virtual string LogoReverseUrl => null;
}
}

@ -4,6 +4,14 @@
{
string AppName { get; }
/// <summary>
/// Logo on white background
/// </summary>
string LogoUrl { get; }
/// <summary>
/// Logo on dark background
/// </summary>
string LogoReverseUrl { get; }
}
}

Loading…
Cancel
Save