i'm trying to move these bars to the right next to the logout button.
This is the current style.
.p-menubar-button {
display: none;
cursor: pointer;
align-items: center;
justify-content: center;
}
I have tried to align-content: flex-end but it doesn't move it.
This is what I'm trying to achieve
CodePudding user response:
this might work , try adding :
flex:1;
CodePudding user response:
.p-menubar-button {
display: none;
cursor: pointer;
align-items: center;
justify-content: center;
margin-left: 18cm;
}