Skip to content

Commit

Permalink
clients/feed: flex-shrink-0
Browse files Browse the repository at this point in the history
  • Loading branch information
emilwidlund committed Jun 20, 2024
1 parent b26133f commit cfedb90
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export default function Layout({ children }: PropsWithChildren) {

return (
<div className="flex h-full flex-col gap-12 md:flex-row">
<div className="flex h-full w-full flex-col gap-y-6 self-stretch md:sticky md:top-[3rem] md:max-w-xs">
<div className="flex h-full w-full flex-shrink-0 flex-col gap-y-6 self-stretch md:sticky md:top-[3rem] md:max-w-xs">
<PurchaseSidebar />
{shouldShowGitHubAuthUpsell ? (
<GitHubAuthUpsell />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export default function ClientPage() {

return (
<div className="flex h-full flex-col gap-12 md:flex-row">
<div className="flex h-full w-full flex-col gap-y-12 self-stretch md:sticky md:top-[3rem] md:max-w-xs">
<div className="flex h-full w-full flex-shrink-0 flex-col gap-y-12 self-stretch md:sticky md:top-[3rem] md:max-w-xs">
<PurchaseSidebar />
</div>
{orders?.pagination.total_count === 0 ? (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export default function ClientPage() {

return (
<div className="flex h-full flex-col gap-12 md:flex-row">
<div className="flex h-full w-full flex-col gap-y-12 self-stretch md:sticky md:top-[3rem] md:max-w-xs">
<div className="flex h-full w-full flex-shrink-0 flex-col gap-y-12 self-stretch md:sticky md:top-[3rem] md:max-w-xs">
<PurchaseSidebar>
<div className="flex items-center space-x-2">
<Checkbox
Expand Down

0 comments on commit cfedb90

Please sign in to comment.