wasp/examples/waspello/ext/Navbar.css
2021-10-11 14:03:03 +02:00

28 lines
442 B
CSS

.navbar {
display: flex;
justify-content: space-between;
flex-direction: row;
width: 100%;
height: 40px;
padding: 10px;
//background-color: #bb9b02;
background-color: rgba(0, 0, 0, 0.15);
color: #fff;
}
.navbar-item {
flex: 1;
display: flex;
justify-content: center;
}
.navbar-item:first-child > span { margin-right: auto; }
.navbar-item:last-child > span { margin-left: auto; }
.logout-btn {
color: #fff;
}