Skip to content
Merged
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
2 changes: 1 addition & 1 deletion src/pages/user/ProfileHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ const ProfileHeader = ({
</Header>
)}
<div className="flex flex-col gap-4 w-full break-all">
<div className="w-full h-36 md:h-56 bg-gradient-to-br from-base-200 to-base-300">
<div className="w-full h-36 md:h-56 bg-gradient-to-br from-base-200 to-base-300 overflow-hidden">
{profile?.banner && (
<ProxyImg
src={profile?.banner}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/user/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ function UserPage({pubKey}: {pubKey: string}) {

return (
<div className="flex justify-center flex-1 relative h-full">
<div className="flex-1 flex flex-col h-full relative">
<div className="flex-1 flex flex-col h-full relative min-w-0 overflow-hidden">
<Header
rightContent={
<div className="flex items-center gap-2">
Expand Down
2 changes: 1 addition & 1 deletion src/shared/components/RightColumn.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ function RightColumn({children}: RightColumnProps) {

return (
<ErrorBoundary>
<div className="px-4 py-4 h-full overflow-y-auto scrollbar-hide flex flex-col gap-4 w-1/3 hidden lg:flex border-l border-custom">
<div className="px-4 py-4 h-full overflow-y-auto scrollbar-hide flex flex-col gap-4 w-80 flex-shrink-0 hidden lg:flex border-l border-custom">
<div className="flex items-center gap-2">
<div className="flex-1">
<SearchBox searchNotes={true} />
Expand Down
Loading