Compare commits

..

4 Commits

Author SHA1 Message Date
f376f2e1e4 Merge pull request 'chore(deps): update dependency preline to v4.1.2' (#360) from renovate/preline-4.x-lockfile into main
All checks were successful
test-build / guarddog (push) Successful in 57s
test-build / build (push) Successful in 2m30s
renovate / renovate (push) Successful in 1m36s
2026-02-28 18:08:14 +00:00
a1cfa4ef24 chore(deps): update dependency preline to v4.1.2
Some checks are pending
renovate/stability-days Updates have not met minimum release age requirement
test-build / guarddog (pull_request) Successful in 42s
test-build / build (pull_request) Successful in 3m19s
2026-02-28 18:07:57 +00:00
cc5e975ea6 feat: release 2.17.1
All checks were successful
test-build / guarddog (push) Successful in 1m5s
release-image-harbor / build (push) Successful in 2m44s
release-image-gitea / build (push) Successful in 2m48s
test-build / build (push) Successful in 4m40s
release-image-gitea / release (push) Successful in 8m7s
release-image-harbor / release (push) Successful in 8m15s
renovate / renovate (push) Successful in 2m7s
2026-02-26 21:23:28 -06:00
ea15224eae feat: tweaks to background to be more pastel 2026-02-26 21:23:08 -06:00
4 changed files with 17 additions and 17 deletions

View File

@@ -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.17.0" LABEL version="2.17.1"
LABEL description="Astro based personal website" LABEL description="Astro based personal website"
ENV HOST=0.0.0.0 ENV HOST=0.0.0.0

View File

@@ -1,7 +1,7 @@
{ {
"name": "site-profile", "name": "site-profile",
"type": "module", "type": "module",
"version": "2.17.0", "version": "2.17.1",
"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",

8
pnpm-lock.yaml generated
View File

@@ -76,7 +76,7 @@ importers:
version: 4.0.0 version: 4.0.0
preline: preline:
specifier: ^4.1.1 specifier: ^4.1.1
version: 4.1.1 version: 4.1.2
react: react:
specifier: ^19.2.4 specifier: ^19.2.4
version: 19.2.4 version: 19.2.4
@@ -4692,8 +4692,8 @@ packages:
resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==} resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
engines: {node: ^10 || ^12 || >=14} engines: {node: ^10 || ^12 || >=14}
preline@4.1.1: preline@4.1.2:
resolution: {integrity: sha512-akWglZoBr0TsMIbhAZ01teCrFULBVCy9OHUtcGcb49tErWmNwiITdCrbUBXMYi2hMg4Pj3i1cA7wjGaUsNFUVA==} resolution: {integrity: sha512-uKK0etQ8sLyLqXH4aTmaJMm9l4nbjkmTxpXo7poQ8XuQ1zTlWi12Cmr2OkUPfYEku2+5b9YGhosGikEGF0tSeQ==}
hasBin: true hasBin: true
prelude-ls@1.2.1: prelude-ls@1.2.1:
@@ -11243,7 +11243,7 @@ snapshots:
picocolors: 1.1.1 picocolors: 1.1.1
source-map-js: 1.2.1 source-map-js: 1.2.1
preline@4.1.1: preline@4.1.2:
dependencies: dependencies:
'@floating-ui/dom': 1.7.5 '@floating-ui/dom': 1.7.5
'@types/culori': 4.0.1 '@types/culori': 4.0.1

View File

@@ -133,23 +133,23 @@ const normalizeTitle = !title ? global.name : `${title} | ${global.name}`;
/* Background that creates the "glimmer" effect */ /* Background that creates the "glimmer" effect */
.bg { .bg {
animation: slide 20s ease-in-out infinite alternate; animation: slide 25s ease-in-out infinite alternate;
background-image: linear-gradient(-60deg, var(--bg-primary) 33.3%, var(--bg-secondary) 33.3%, var(--bg-secondary) 66.6%, var(--bg-tertiary) 66.6%); background-image: linear-gradient(-55deg, var(--bg-primary) 33.3%, var(--bg-secondary) 33.3%, var(--bg-secondary) 66.6%, var(--bg-tertiary) 66.6%);
filter: blur(80px); filter: blur(40px);
top: 0; top: 0;
bottom: 0; bottom: 0;
left: -50%; left: -70%;
right: -50%; right: -70%;
opacity: .5; opacity: .5;
position: fixed; position: fixed;
z-index: -1; z-index: -1;
--bg-primary: #e5e5e5; --bg-primary: #e5e5e5;
--bg-secondary: #d9d9d9; --bg-secondary: #dce3eb;
--bg-tertiary: #ededed; --bg-tertiary: #f4f6f8;
} }
:global(.dark) .bg { :global(.dark) .bg {
--bg-primary: #292524; --bg-primary: #332f2e;
--bg-secondary: #44403c; --bg-secondary: #44403c;
--bg-tertiary: #57534e; --bg-tertiary: #57534e;
} }
@@ -160,15 +160,15 @@ const normalizeTitle = !title ? global.name : `${title} | ${global.name}`;
} }
.bg3 { .bg3 {
animation-duration: 25s; animation-duration: 20s;
} }
@keyframes slide { @keyframes slide {
0% { 0% {
transform:translateX(-25%); transform: translateX(-30%);
} }
100% { 100% {
transform:translateX(25%); transform: translateX(30%);
} }
} }
</style> </style>