Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 50f050c0b6 | |||
| 8b07837c0d | |||
| 6fca640fd8 |
@@ -22,7 +22,7 @@ WORKDIR /app
|
|||||||
COPY --from=prod-deps /app/node_modules /app/node_modules
|
COPY --from=prod-deps /app/node_modules /app/node_modules
|
||||||
COPY --from=build /app/dist /app/dist
|
COPY --from=build /app/dist /app/dist
|
||||||
|
|
||||||
LABEL version="2.21.0"
|
LABEL version="2.23.0"
|
||||||
LABEL description="Astro based personal website"
|
LABEL description="Astro based personal website"
|
||||||
|
|
||||||
ENV HOST=0.0.0.0
|
ENV HOST=0.0.0.0
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "site-profile",
|
"name": "site-profile",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "2.21.0",
|
"version": "2.23.0",
|
||||||
"homepage": "https://www.alexlebens.dev",
|
"homepage": "https://www.alexlebens.dev",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://gitea.alexlebens.dev/alexlebens/site-profile/issues",
|
"url": "https://gitea.alexlebens.dev/alexlebens/site-profile/issues",
|
||||||
|
|||||||
@@ -78,12 +78,16 @@ const normalizeTitle = !title ? global.name : `${title} | ${global.name}`;
|
|||||||
<!-- Fixed header -->
|
<!-- Fixed header -->
|
||||||
<Header />
|
<Header />
|
||||||
|
|
||||||
<!-- Content -->
|
<!-- Main body -->
|
||||||
<div class="mask-container w-screen h-screen overflow-y-auto overflow-x-hidden">
|
<div class="mask-container w-screen h-screen overflow-y-auto overflow-x-hidden">
|
||||||
<main class="pt-20">
|
<main class="pt-20">
|
||||||
|
|
||||||
<slot />
|
<!-- Content -->
|
||||||
|
<div class="grow w-full max-w-(--breakpoint-2xl) px-4 sm:px-6 lg:px-8 py-20 mx-auto">
|
||||||
|
<slot />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Footer -->
|
||||||
<Footer />
|
<Footer />
|
||||||
|
|
||||||
</main>
|
</main>
|
||||||
@@ -133,9 +137,9 @@ const normalizeTitle = !title ? global.name : `${title} | ${global.name}`;
|
|||||||
}
|
}
|
||||||
|
|
||||||
:global(.dark) .bg {
|
:global(.dark) .bg {
|
||||||
--bg-primary: #332f2e;
|
--bg-primary: #3b3836;
|
||||||
--bg-secondary: #44403c;
|
--bg-secondary: #332f2e;
|
||||||
--bg-tertiary: #57534e;
|
--bg-tertiary: #44403c;
|
||||||
}
|
}
|
||||||
|
|
||||||
.bg2 {
|
.bg2 {
|
||||||
|
|||||||
Reference in New Issue
Block a user