Skip to content

Commit

Permalink
Merge pull request #31 from Noboomta/fix/add-start-savelist
Browse files Browse the repository at this point in the history
fix: add col start and col end to start at 1
  • Loading branch information
Noboomta committed Jun 22, 2024
2 parents d0fd412 + f86d5b2 commit 386c86d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const gridConfig = () => {
const getGridClass = () => {
const result = []

for (let i = 14; i <= 169; i++) {
for (let i = 1; i <= 169; i++) {
result.push(`col-start-${i}`, `col-end-${i}`)
}

Expand Down

0 comments on commit 386c86d

Please sign in to comment.