Skip to content

Commit

Permalink
Merge pull request #9 from the-supercss-project/fix-columns-issue-wro…
Browse files Browse the repository at this point in the history
…ng-type

🐛 FIX: Make columns work.
  • Loading branch information
sam-the-programmer committed Dec 5, 2021
2 parents 8f73825 + 7fbf285 commit 5d12fac
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"svg.preview.background": "transparent"
"vim.active" : false
}
2 changes: 1 addition & 1 deletion CSS/columns.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Scripts/columns.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ func floatToStr(f float64) string {

func genColumns(output string) string {
for i := 1; i < 10; i++ {
output += newline + ".columns-" + strconv.Itoa(i) + "{columns: " + strconv.Itoa(i) + ";}"
output += newline + ".columns-" + strconv.Itoa(i) + "{column-count: " + strconv.Itoa(i) + ";}"
}
return output
}
Expand Down

0 comments on commit 5d12fac

Please sign in to comment.