Activities of "Anjali_Musmade"

Hi,

Please check this document link https://docs.abp.io/en/commercial/latest/themes/lepton-x/blazor?UI=BlazorServer#main-header

Thank you.

Hello

this here can you override it please there is no override keyword here

Hi,

Yes you are right that solution is for angular application.

To customize style of AuthServer you can apply custom css in global-style.css under Authserver project.

for example: I have changed the primary color of button like

which results like -

Thanks,

Hello , you can add your customize code in styles.scss page on Angular side. in this above example we can change button color and background color. ex. .btn-primary { --bs-btn-bg: #b43434; } div.card-body{ background-color: yellow; }

output :

Thank you.

Hi

Have you added any controller with same path?

Hello,

could you please try to add below code in app.component.ts file of angular application

export class AppComponent {
  constructor(private authService: AuthService) {
    if (!this.authService.isAuthenticated) {
      this.authService.navigateToLogin();
    }
  }
}

Hi

You can override service and add allowanonymous attribute to the api that needs to be access anonymously

Answer

Hello,

I have checked for chat module at my end it seem like below

I think you should try to change the value of padding-y for .btn and then check the position of chat icon and then accordingly try to fix it with the help of css.

thanks,

Hi ,

Can you check once follwoing links 1.https://support.abp.io/QA/Questions/5962/How-to-set-permissions-for-dynamic-menu-items 2.https://github.com/abpframework/abp/issues/4448

Thank you.

Answer

Hello,

I am not exactly sure but I will give you some workaround. Please try to add this css in main.css under Blazor project

div.lpx-brand-name {
    left: 200px;
    top: 15px;
}

div.lpx-header-bottom ul.lpx-nav-menu
{
   justify-content: normal;
   overflow-x:scroll;
}

It will solve menu scrolling and Menu banding issue, which results like

thanks

Showing 661 to 670 of 1318 entries
Made with ❤️ on ABP v9.2.0-preview. Updated on January 20, 2025, 07:44