You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, seemed to have found a bug. In my example below, I am using another template within grids/columns, but it doesn't render correctly (not middle and center aligned). If I render the template without any other templates (just the whole html code), it renders correctly.
Try running the code with the {{> loginForm}} template first, then try running again replacing {{> loginForm}} with the html it's supposed to be loading.
Using the latest semantic:ui with 2.0
Thanks!
The text was updated successfully, but these errors were encountered:
Looks like in the class="ui middle aligned center aligned grid" the duplicate aligned gets merged into one, so it gets rendered like so: class="ui middle aligned center grid"
It also happens if you use something like two column computer one column mobile grid. It might be related to how meteor set classes (I haven't dig into that). To make it work you need to add classes via plain js or something like that. Just a workaround.
EDIT: Just forgot to mention that this also happens with css version of semantic so, I guess is more a blaze issue rather than Semantic.
EDIT 2: After some research, I've found the problem and opened and issue here meteor/meteor#5632
Hi, seemed to have found a bug. In my example below, I am using another template within grids/columns, but it doesn't render correctly (not middle and center aligned). If I render the template without any other templates (just the whole html code), it renders correctly.
http://meteorpad.com/pad/Js9KZ6Dbf9nEo2Xdz/Semantic%202.0
Try running the code with the
{{> loginForm}}
template first, then try running again replacing{{> loginForm}}
with the html it's supposed to be loading.Using the latest semantic:ui with 2.0
Thanks!
The text was updated successfully, but these errors were encountered: