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';