Skip to content

Commit

Permalink
fix: new chat button styles fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mrevanzak committed Jun 30, 2024
1 parent e2ec866 commit 1d74f56
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/web/src/components/sidebar/sidebar-user.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ export function SidebarUser() {
variant="ghost"
color="default"
fullWidth
className="relative min-w-10 justify-start overflow-clip px-0 transition-all group-data-[open=true]:min-w-20 group-data-[open=false]:-translate-x-3.5"
className="relative min-w-10 justify-start overflow-clip px-0 transition-all group-data-[open=true]:min-w-20 group-data-[open=false]:-translate-x-[13px]"
onClick={() => {
setOpen(false);
searchParams.has("id")
Expand All @@ -126,7 +126,7 @@ export function SidebarUser() {
}}
>
<FaPlus className="translate-x-3/4 transition-all" />
<span className="absolute left-9">{t("new")}</span>
<span className="absolute left-10">{t("new")}</span>
</Button>
</div>

Expand Down

0 comments on commit 1d74f56

Please sign in to comment.