Hi,
you can try creating a js file and add it to the bundle system https://docs.abp.io/en/abp/latest/UI/AspNetCore/Bundling-Minification#configuring-an-existing-bundle
Configure<AbpBundlingOptions>(options =>
{
    options.ScriptBundles.Configure(
        LeptonXThemeBundles.Scripts.Global,
        bundle =>
        {
            bundle.AddFiles("/accountpatch.js");
        }
    );
});
Hi,
You can use js to remove classes and add styles
$(".abp-account-layout .container-fluid").removeClass("overflow-hidden")
$(".abp-account-layout .container-fluid").css("overflow-x", "hidden")
Could you share the response of the  /api/abp/api-definition endpont.
Hi,
Please try:
abp proxy-generate -t ng -m bloggingabp proxy-generate -t ng -m bloggingAdminHi
we will check it. thanks your ticket was refunded.
Hi,
Could you share the full error logs? thanks.
Hi,
Could you upgrade to 8.1.3?
Hi,
we used the code for the login.cshtml we found here (https://community.abp.io/posts/how-to-customize-the-login-page-of-an-abp-blazor-application-by4o9yms) as well as from the source code of the module
You can download the source code for the account module to find the login page source code
but as soon as we copy the login.cshtml.cs file from the source code into the directory mentioned above, the login button does nothing. Any ideas/hints as to why?
Maybe you need to add tag helper reference to the _ViewImports.cshtml
Hi,
You can try upgrading to 8.1.x or:
<div class="container-fluid p-0" style="overflow-x: hidden">
....
</div>
 
                                