Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix/1635 - fix content title with scrolling effect for large title #1640

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions src/components/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -204,12 +204,21 @@ export function Sidebar({
}
>
<div className="flex w-full items-center justify-between gap-2">
<div className="flex items-center gap-2">
<div className="flex items-center w-full gap-2">
<div className="flex gap-2">
{content.type === 'video' && <Check content={content} />}
{content.type === 'video' && <Play className="size-4" />}
{content.type === 'notion' && <File className="size-4" />}
</div>
<div className="relative w-[70%] overflow-hidden">
<div
className="w-full whitespace-nowrap transition-transform ease-linear hover:animate-content-scroll group"
>
<span className="truncate group-hover:overflow-visible group-hover:whitespace-nowrap group-hover:text-clip">
{content.title}
</span>
</div>
</div>
{content.type === 'video' && (
<BookmarkButton
bookmark={content.bookmark ?? null}
Expand All @@ -219,6 +228,7 @@ export function Sidebar({
</div>
</div>
</Link>

);
});
},
Expand Down Expand Up @@ -249,7 +259,7 @@ export function Sidebar({
ref={sidebarRef}
exit="closed"
variants={sidebarVariants}
className="fixed right-0 top-[64px] z-[99999] flex h-screen w-full flex-col gap-4 overflow-y-auto rounded-r-lg border-l border-primary/10 bg-neutral-50 dark:bg-neutral-900 md:max-w-[30vw]"
className="fixed right-0 top-[64px] z-[99999] flex h-screen w-full flex-col gap-4 overflow-y-auto rounded-r-lg border-l border-primary/10 bg-neutral-50 dark:bg-neutral-900 md:max-w-[50vw] lg:max-w-[35vw]"
>
<div className="sticky top-0 z-10 flex items-center justify-between border-b border-primary/10 bg-neutral-50 p-5 dark:bg-neutral-900">
{' '}
Expand Down
5 changes: 5 additions & 0 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,13 +76,18 @@ module.exports = {
'0%, 100%': { opacity: 1 },
'50%': { opacity: 0.5 },
},
'content-scroll': {
'0%': { transform: 'translateX(0)' },
'100%': { transform: 'translateX(-50%)' },
},
},
animation: {
'accordion-down': 'accordion-down 0.2s ease-out',
'accordion-up': 'accordion-up 0.2s ease-out',
scroll:
'scroll var(--animation-duration, 40s) var(--animation-direction, forwards) linear infinite',
pulse: 'pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite',
'content-scroll': 'content-scroll 5s linear infinite',
},
height: {
sidebar: 'calc(100vh - 64px)',
Expand Down
Loading