mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 17:34:02 +08:00
23 lines
411 B
SCSS
23 lines
411 B
SCSS
.chat-navbar {
|
|
flex-shrink: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
width: 100%;
|
|
|
|
&-container {
|
|
padding-inline: 1rem;
|
|
position: sticky;
|
|
border-bottom: 1px solid var(--primary-low);
|
|
background: var(--secondary);
|
|
height: 50px;
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
z-index: z("header") - 1;
|
|
}
|
|
}
|
|
|
|
.chat-navbar__right-actions {
|
|
list-style: none;
|
|
margin-left: auto;
|
|
}
|