You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using Angular, I put the top navigation, sidebar navigation, and footer in different Angular components. Angular creates a new HTML tag behind the scenes, which breaks the layout.
I managed to fix it using "display: contents" on the component, but it would be great if that just works without any additional fixes.
Steps to reproduce
For example, the code below is what I have in my app.component.html; inside each component is HTML from Admin LTE.
Issue when using the theme with Angular
When using Angular, I put the top navigation, sidebar navigation, and footer in different Angular components. Angular creates a new HTML tag behind the scenes, which breaks the layout.
I managed to fix it using "display: contents" on the component, but it would be great if that just works without any additional fixes.
Steps to reproduce
For example, the code below is what I have in my app.component.html; inside each component is HTML from Admin LTE.
When rendering the components, Angular add an extra HTML like below:
Without me adding "style=display:contents" the footer breaks
The text was updated successfully, but these errors were encountered: