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
Presently trying to match some third-party css by adding a body class in the Page: template... It may be useful for future folk.
It seems it may be necessary to not close body. Trying things from this SO post I hit on this solution:
Page:
doctype html
<html>
head
meta(charset="utf-8")
title
view(name="{{$render.prefix}}Title")
view(name="{{$render.prefix}}Styles")
view(name="{{$render.prefix}}Head")
<bodyclass="MY_CUSTOM_CLASS responsive {{$bodyClass($render.ns)}}">
view(name="{{$render.prefix}}Body")
The text was updated successfully, but these errors were encountered:
Presently trying to match some third-party css by adding a body class in the
Page:
template... It may be useful for future folk.It seems it may be necessary to not close
body
. Trying things from this SO post I hit on this solution:The text was updated successfully, but these errors were encountered: