Skip to content
Snippets Groups Projects
Commit d339c7e1 authored by Albin Heimerson's avatar Albin Heimerson
Browse files

remove overflow auto from gridmaker

parent 9c7c1c58
No related branches found
No related tags found
No related merge requests found
......@@ -15,7 +15,7 @@ Constructs a Node containing empty nodes in a row by column grid. A member can t
"""
function make_grid(rows::Integer, columns::Integer, width = 500, height = 800)
style_row = Dict(:height => "$(100/rows)%", :overflow => "auto")
style_row = Dict(:height => "$(100/rows)%")
style_grid = Dict(:width => width, :height => height)
Node(:div, style=style_grid, (Node(:div, style=style_row, make_row(columns)...)
for i in 1:rows)...)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment