Skip to content

Commit

Permalink
style: fix small margin issue
Browse files Browse the repository at this point in the history
  • Loading branch information
louismollick committed Oct 15, 2024
1 parent 4de9195 commit c9a5b37
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-ghcr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
script: |
cd ~/bilingualmanga && git pull && git status
echo "${{ secrets.GH_PAT }}" | docker login --username louismollick --password-stdin ghcr.io
docker build . --no-cache --tag ghcr.io/louismollick/bilingualmanga:latest
docker build . --tag ghcr.io/louismollick/bilingualmanga:latest
docker push ghcr.io/louismollick/bilingualmanga:latest
9 changes: 0 additions & 9 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,6 @@ RUN \
# We only keep the public/images folder during the build process
RUN rm -rf /app/public/images /app/.next/standalone/public/images

RUN ls -al /app/public

RUN ls -al /app/.next/standalone

RUN ls -al /app/.next/standalone/public

RUN ls -al /app/.next/static


##### RUNNER

FROM --platform=linux/amd64 gcr.io/distroless/nodejs20-debian12 AS runner
Expand Down
4 changes: 2 additions & 2 deletions src/app/_components/mangaPageView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -176,12 +176,12 @@ const MangaPageView = ({
</div>
</div>

<nav className="mt-2 flex w-full items-center justify-around gap-3 text-xs md:absolute md:left-0 md:top-0 md:h-full md:w-24 md:flex-col md:justify-start md:border-r">
<nav className="flex w-full items-center justify-around gap-3 text-xs md:absolute md:left-0 md:top-0 md:h-full md:w-24 md:flex-col md:justify-start md:border-r">
<Link href="/">
<Button
variant="ghost"
size="icon"
className="h-10 w-10 md:mt-3 md:h-20 md:w-20"
className="mt-2 h-10 w-10 md:mt-3 md:h-20 md:w-20"
>
<House className="h-5 w-5" />
<span className="sr-only">Home</span>
Expand Down

0 comments on commit c9a5b37

Please sign in to comment.