From df52674e3d5d46b02edb9fab8bdaa08f5fcd8591 Mon Sep 17 00:00:00 2001 From: alemi Date: Tue, 3 Dec 2024 21:05:18 +0100 Subject: [PATCH] feat: center align cards --- web/index.html | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/web/index.html b/web/index.html index 7d0b852..26e0317 100644 --- a/web/index.html +++ b/web/index.html @@ -69,6 +69,7 @@ padding: 1em; box-sizing: border-box; transition: .3s; + text-align: left; } div.card:hover { background-color: var(--background-dim); @@ -76,6 +77,9 @@ body { margin: 0; } + main { + text-align: center; + } footer { width: 100%; }