generated from lucien/api-template
40 lines
703 B
CSS
40 lines
703 B
CSS
.topbar {
|
|
width: 97%;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
border: 1px solid #270722;
|
|
padding: 10px;
|
|
background-color: #fff6fd;
|
|
}
|
|
|
|
.topbar-left {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
|
|
.topbar-right {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
|
|
@media (max-width: 560px) {
|
|
.topbar {
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.topbar-left {
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.topbar-right {
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
}
|