mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-12-28 03:25:17 +03:00
28 lines
442 B
CSS
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;
|
|
}
|