Skip to content

Commit

Permalink
fix chat ui bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
jsartisan committed Dec 11, 2024
1 parent 61c90ce commit 558f468
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ const _SidebarContent = (
)}
{!isMobile && (
<Button
className={styles.sidebarHeaderExpandButton}
color="neutral"
icon={
state === "full-width"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,6 @@
.sidebarContentInner {
flex-grow: 1;
overflow-y: auto;
overflow-x: hidden;
width: 100%;
}

Expand All @@ -163,13 +162,22 @@
*/
.sidebarHeader {
height: var(--sizing-13);
min-height: var(--sizing-13);
padding: 0 var(--inner-spacing-2);
border-bottom: var(--border-width-1) solid var(--color-bd-elevation-1);
}

.sidebarHeader:empty {
display: none;
}

.sidebarTitle {
position: absolute;
left: 0;
right: 0;
margin: 0 var(--sizing-14);
}

.sidebarHeaderExpandButton {
margin-inline-start: auto;
}

0 comments on commit 558f468

Please sign in to comment.