Skip to content

Commit

Permalink
fix(web): styling touchup on mobile's history chat
Browse files Browse the repository at this point in the history
  • Loading branch information
mrevanzak committed Jun 29, 2024
1 parent 5022371 commit 0e80d18
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/web/src/components/history-list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export function HistoryList(props: { id: string; title: string }) {
) : (
<p className="overflow-hidden text-ellipsis">{props.title}</p>
)}
<div>
<div className="min-w-fit">
{edit ? (
<Button
variant="light"
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/components/sidebar/sidebar-user.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export function SidebarUser() {
<Drawer open={open} onOpenChange={setOpen}>
<DrawerTrigger asChild>
<Button
className="absolute right-0 top-1/4 z-10"
className="fixed right-0 top-1/4 z-10"
isIconOnly
onClick={() => setOpen(!open)}
radius="full"
Expand Down

0 comments on commit 0e80d18

Please sign in to comment.