I am facing an issue with my final paper assignment regarding my Angular project and the Login component. I wanted to hide the toolbar component when there is no currentUser present in the system. Although I was able to achieve this using
<ng-content></ng-content>
in the Toolbar, I noticed that it changed the style of the Login component.
login.component.html
<div class="logo">
<a href="https://www.cedupcriciuma.com.br/" target="_blank"><img class="iconLogo"
src="../../../../assets/LogoCedup.png" alt="Logo"></a>
</div>
<div class="spinnerDiv">
...
...
...
toolbar-menu.component.html
<div>
...
...
...
app.component.html
<app-toolbar-menu >
<router-outlet></router-outlet>
</app-toolbar-menu>
IMAGES OF THE APPLICATION How it should be
Thank you for your assistance!