Update index.html

This commit is contained in:
Riley Bautista 2025-03-02 08:40:55 -05:00 committed by GitHub
parent 4afec9efa2
commit 7bffcdf273
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -31,6 +31,9 @@
.card-body {
flex: 1;
}
.row-cols-1 .col, .row-cols-md-2 .col, .row-cols-xl-3 .col {
display: flex;
}
</style>
</head>
@ -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';