Made project columns into boxes.

(Instead of cards. Should have better borders and margins.)
dev
Luka Vandervelden 2019-12-12 01:55:25 +01:00
parent ef8ce02cf4
commit 6511607f3c
1 changed files with 4 additions and 8 deletions

View File

@ -41,14 +41,10 @@ Project = (self, todod-ws, users) ->
h \div.column {
key: column.id
} [
h \div.card { key: self.id } [
h \div.cart-head [
h \p.title.is-4 [ column.title ]
]
h \div.card-content { key: self.id } [
for task in tasks-to-display
task.render!
]
h \div.box { key: self.id } [
h \p.title.is-4 [ column.title ]
for task in tasks-to-display
task.render!
]
]