stepanjakl

Results 43 comments of stepanjakl

I came up with a seperate solution to generate the UMD file using the Rollup compiler. Possibly it could make us of the NX package as well. It's just a...

@PuruVJ I am embedding scripts directly on the page without a compiler. If I use the `import` statement on the client/browser side I get this error: `Uncaught SyntaxError: Cannot use...

I think I've found a workaround. Removing the enclosing brackets seems to resolve the issue. Here's an example: Before: ```css @media ((min-width: 45rem) and (min-aspect-ratio: 3/4)) { ... } ```...

Hi, I'm encountering an issue with columns in which one of the columns with a percentage width doesn't have enough space to fill out its spot when the gap option...

Hi @daybrush, even if I align the columns differently, the layout is not correct. There should be 3 columns instead of 2 as each column has width of `33.333%`. Please...

Yes, but if I set gap to `0` then there'll be no gap between the columns. I was hoping the script would calculate the gap taking column width into consideration....

I did sort it out this way btw: ```html ``` But this is not an ideal solution. The grid library should ideally compute the gap without me adjusting the column...

Okay, I tried it, but it's overflowing its parent container now. Moreover, is there a way to set column breakpoints for different viewport widths?