diff --git a/Makefile b/Makefile index 365c3ea..6cd0e48 100644 --- a/Makefile +++ b/Makefile @@ -10,6 +10,8 @@ server: deploy: @echo "📤 Pushing production to gitea..." + git add . + git commit -m "deploying" git push origin production ssh $(VPS_USER)@$(VPS_HOST) -p $(SSH_PORT) "cd $(VPS_PATH) && git checkout production && git pull origin production" @echo "✅ Deployment done!" diff --git a/sleepeesoftware.fr/css/base.css b/sleepeesoftware.fr/css/base.css index 8277e58..aef7546 100644 --- a/sleepeesoftware.fr/css/base.css +++ b/sleepeesoftware.fr/css/base.css @@ -131,6 +131,14 @@ ul { list-style: none; } +ul .repo-list { + display: flex; + flex-wrap: nowrap; + gap: 1em; + flex-flow: row; + list-style: none; +} + footer a { text-decoration: none; color: var(--primary-color);