Results 10 comments of Jane Ori

Here's a lame version of a working function: ```js var unibold = function (str) { var bold = "𝟬𝟭𝟮𝟯𝟰𝟱𝟲𝟳𝟴𝟵𝗮𝗯𝗰𝗱𝗲𝗳𝗴𝗵𝗶𝗷𝗸𝗹𝗺𝗻𝗼𝗽𝗾𝗿𝘀𝘁𝘂𝘃𝘄𝘅𝘆𝘇𝗔𝗕𝗖𝗗𝗘𝗙𝗚𝗛𝗜𝗝𝗞𝗟𝗠𝗡𝗢𝗣𝗤𝗥𝗦𝗧𝗨𝗩𝗪𝗫𝗬𝗭"; var normal = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; return str.replace(/[a-z0-9]/gi, function (x) { return bold.substr(normal.indexOf(x)...

And here's another lame (but much faster) version: ```js var unibold = (function () { var map = { "0": "𝟬", "1": "𝟭", "2": "𝟮", "3": "𝟯", "4": "𝟰", "5":...

Hm Steal is detecting it correctly using the contents of `polished/lib/index.js` directly... So I can't reproduce a parsing issue yet @christopherjbaker could you provide set up files for **Steps to...

Yep, I concluded the same thing. I never updated the CommonJS flavor of getCJSDeps. The AMD one works.

Sorry for not replying yet, I expected to get to this sooner than I have. I will add an explanation, but for now, in case anyone comes here looking for...

This codepen (created Dec 31st 2021) https://codepen.io/propjockey/pen/VwMPYNw?editors=1100 Used to render this: ![image](https://user-images.githubusercontent.com/7545075/185773633-44f9cf7f-05f0-42bf-b435-981b5e406308.png) But now `aspect-ratio` is not respecting `max-height` Is it because of these changes? It was really useful to...

awesome, thank you so much Corset is awesome, really enjoy using it

One enormous win with these btw is no more figuring out the right % value for every keyframe of an animation that has to be hardcoded and completely redone to...

If we remove `initial` from initial-value of global syntax properties, could we introduce a syntax that allows it? Since the fallback of a variable (`var(--foobar, fallback)`) doesn't have to be...

@Gerdofal if you need any help with augmented-ui, please feel free to ping me! Even if you just want to draw or photoshop something, I could send you codepens of...