mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2024-11-19 12:40:09 +01:00
fix sidebar resizing/truncate issue on hover
This commit is contained in:
parent
4df47420be
commit
88f5bb5ce1
@ -73,16 +73,18 @@ export default function ActiveWorkspaces() {
|
||||
className="flex-shrink-0"
|
||||
size={24}
|
||||
/>
|
||||
<div className="w-[130px] overflow-hidden">
|
||||
<p
|
||||
className={`
|
||||
text-[14px] leading-loose whitespace-nowrap overflow-hidden
|
||||
${isActive ? "text-white" : "text-zinc-200 group-hover:w-[120px]"} truncate
|
||||
w-[130px] transition-all duration-200
|
||||
${isActive ? "text-white" : "text-zinc-200"} truncate
|
||||
w-full group-hover:w-[100px] transition-all duration-200
|
||||
`}
|
||||
>
|
||||
{workspace.name}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
{user?.role !== "default" && (
|
||||
<div
|
||||
className={`flex items-center gap-x-[2px] transition-opacity duration-200 ${isActive ? "opacity-100" : "opacity-0 group-hover:opacity-100"}`}
|
||||
|
Loading…
Reference in New Issue
Block a user