27 lines
364 B
CSS
27 lines
364 B
CSS
.top-bar {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
height: 100%;
|
|
}
|
|
|
|
.top-bar-search {
|
|
flex: 1;
|
|
max-width: 400px;
|
|
}
|
|
|
|
.top-bar-actions {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 16px;
|
|
}
|
|
|
|
.top-bar-icon {
|
|
font-size: 18px;
|
|
color: var(--color-text-secondary);
|
|
cursor: pointer;
|
|
}
|
|
|
|
.top-bar-avatar {
|
|
cursor: pointer;
|
|
} |