So I am trying to change the css of the header element of the nebular theme in angular
I am trying to separate the two elements (the "MyApp" and the actions bar). Through the console I found that I had to change the "justify-content" of the nav element embeded in the nb-header-layout to "space-between". Here is what I did
html:
<nb-layout-header class="header1">
<app-header></app-header>
<app-actions-bar></app-actions-bar>
</nb-layout-header>
css:
.header1 nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0.5rem;
}
But the changes doesn't apply. Why? And how should I do it?
I looked into not using Nebular’s layout header but it seems like nebular is forcing you to use it otherwise it is not displayed.