hi.
I wrote some inline css something like this in blaze template
<aside id="asideForSidebar"
class="rcx-sidebar sidebar sidebar--main sidebar--{{sidebarViewMode}} {{#if sidebarHideAvatar}}sidebar--hide-avatar{{/if}}"
role="navigation"
data-qa-opened="{{dataQa}}"
style="flex-direction:row ; transform: translate3d(0, 0, 0)"
>
is this code, “flex-direction:row ;” renders well, but “transform: translate3d(0, 0, 0)” renders nothing.
I inspect this using devtools and I can see exactly like below
style=“flex-direction:row ;”
I cannot see “transform: translate3d(0, 0, 0)”
What i am missimg ?
thank you
(meteor version :2.5.6)