Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
RaunoT authored Jan 5, 2024
2 parents 2a44856 + fc9bed0 commit 6ba0a8e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ git clone https://github.com/RaunoT/plex-rewind.git --branch main

3. Run `docker compose build` to build the application and then `docker compose up -d` to start it.

To update, download the latest release, or if you cloned the repo, run `git pull` and repeat the docker compose commands.
To update, download the latest release, or if you cloned the repo, run `git pull` and then `docker compose up --build`.

4. The application should now be running on [http://localhost:8383](http://localhost:8383).

Expand Down
2 changes: 1 addition & 1 deletion src/app/_components/CardWrapper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ type Props = {

export default function CardWrapper({ children, className }: Props) {
return (
<div className='relative flex flex-1'>
<div className='relative flex flex-1 lg:flex-none'>
<article
className={clsx(
'bg-gradient-card flex w-full flex-col rounded-3xl px-6 pb-4 pt-6 sm:px-8 sm:pt-8',
Expand Down
2 changes: 1 addition & 1 deletion src/app/dashboard/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export default async function DashboardLayout({ children }: Props) {
isDashboardDisabled && notFound()

return (
<div className='flex w-full max-w-2xl flex-1 flex-col lg:max-w-5xl 2xl:max-w-6xl'>
<div className='flex w-full max-w-2xl flex-1 flex-col lg:max-w-5xl lg:flex-none 2xl:max-w-6xl'>
<PageTitle title='Dashboard' />
<Suspense>
<DashboardNav libraries={libraries} />
Expand Down
2 changes: 1 addition & 1 deletion src/app/rewind/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default function RewindLayout({ children }: Props) {
isRewindDisabled && notFound()

return (
<div className='flex w-full max-w-2xl flex-1 flex-col'>
<div className='flex w-full max-w-2xl flex-1 flex-col lg:flex-none'>
<PageTitle title={`Rewind ${new Date().getFullYear()}`} />
<CardWrapper className='lg:min-h-[80vh]'>{children}</CardWrapper>
</div>
Expand Down

0 comments on commit 6ba0a8e

Please sign in to comment.