Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add automatic vendor prefixes in generated CSS #55

Open
Olian04 opened this issue Mar 2, 2022 · 0 comments
Open

Add automatic vendor prefixes in generated CSS #55

Olian04 opened this issue Mar 2, 2022 · 0 comments
Labels
feature New feature or request new Supportive tag. Indicates that the issue describes something to be added.

Comments

@Olian04
Copy link
Owner

Olian04 commented Mar 2, 2022

render(_=>_
  .child('div', _=>_
    .text('Hello')
    .style({
      transition: 'all 4s ease',
    })
  )
);
<div><!--Root-->
  <div class="brynja-d047bd7b6186cdc860a6348471743d9f76adfafa">Hello</div>
  <style>
    .brynja-d047bd7b6186cdc860a6348471743d9f76adfafa {
      -webkit-transition: all 4s ease;
      -moz-transition: all 4s ease;
      -ms-transition: all 4s ease;
      -o-transition: all 4s ease;
      transition: all 4s ease;
    }
  </style>
</div>

Note: Hashes in the example are not correct

@Olian04 Olian04 added feature New feature or request new Supportive tag. Indicates that the issue describes something to be added. labels Mar 4, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature New feature or request new Supportive tag. Indicates that the issue describes something to be added.
Projects
None yet
Development

No branches or pull requests

1 participant