16 lines
356 B
SCSS
16 lines
356 B
SCSS
|
.chat-thread-header {
|
||
|
height: var(--chat-header-offset);
|
||
|
min-height: var(--chat-header-offset);
|
||
|
border-bottom: 1px solid var(--primary-low);
|
||
|
border-top: 1px solid var(--primary-low);
|
||
|
box-sizing: border-box;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: space-between;
|
||
|
padding-inline: 1rem;
|
||
|
|
||
|
&__buttons {
|
||
|
display: flex;
|
||
|
}
|
||
|
}
|