UNPKG

mr-class-style-generator

Version:

A utility to apply inline styles from custom class names like mr-fs-[10vw]

19 lines (15 loc) 341 B
<!DOCTYPE html> <html lang="en"> <head> <title>Test MR Class</title> </head> <body> <h1 class="mr-fs-[10vw] mr-max-lg-fs-[20px]">Hello MR Style</h1> <script type="module"> import ApplyMrStyles from "../src/index.js" window.onload = () => { ApplyMrStyles(); }; </script> </body> </html>