amberframework / jasper-helpers

A library of helpers for working with html for apps Crystal
https://amberframework.org
MIT License
19 stars 7 forks source link

Fix checkbox label overlaping #22

Closed faustinoaq closed 6 years ago

faustinoaq commented 6 years ago

Fixes #21

Before:

div.checkbox
  == label(:published)
  == check_box(:published, checked: post.published.to_s == "1")

screenshot_20180101_125738

After: (this PR)

div.checkbox
  == label(:published) do
    == check_box(:published, checked: post.published.to_s == "1")

screenshot_20180101_130316