From 7bffcdf273c2121f6ad07b59a215bd3d281718fd Mon Sep 17 00:00:00 2001 From: Riley Bautista <112599167+RileyBautista@users.noreply.github.com> Date: Sun, 2 Mar 2025 08:40:55 -0500 Subject: [PATCH] Update index.html --- index.html | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index fc3527f..1bfe70f 100644 --- a/index.html +++ b/index.html @@ -31,6 +31,9 @@ .card-body { flex: 1; } + .row-cols-1 .col, .row-cols-md-2 .col, .row-cols-xl-3 .col { + display: flex; + } @@ -57,7 +60,7 @@ const container = document.getElementById('cards-container'); data.forEach(project => { const col = document.createElement('div'); - col.className = 'col-lg-4 d-flex'; + col.className = 'col'; const card = document.createElement('div'); card.className = 'card';