Adam Jagosz

Results 36 comments of Adam Jagosz

Having `vh` and `vw` supported would be great too!

FWIW, I see this in Chrome too. Could there be anything done to make the triangles slightly overlap? I don't really care about transparency.

Probably not useful for the contributors but maybe for someone who just wants to make a website using Astro _now_: inline scripts seem to not be affected. Replace your ```html...

@mateusk Why do you have commas between parameters? This is not valid HTML: ```html ``` and should look (at least) like this: ```html ```

Not to spoil the fun for everyone, but setting DPR to 1 is hardly helpful for testing because modern mobile devices have DPR of 2, 3 or even more. It's...

Density is taken care of by the browser, it makes no sense to add this here. What would make sense is making it possible to define sizes in presets.

`sizes` is required. https://cloudfour.com/thinks/responsive-images-101-part-5-sizes/ I'm not sure why it is so but I suspect it's because you want the browser to download the image as fast as possible. What is...

The tooltip doesn't show up because the root node of UiButton is a `` (a poor choice imho), and a `disabled` button doesn't get any mouse events. The workaround is...

What we're after is to keep the UiTooltip as well. Does applying `title` do that? pt., 20 mar 2020, 00:56 użytkownik sysebert napisał: > I was just using "button" as...

I found that a great and easy way to perform snapping floats to multiples of a fraction is the [Decimal.js](https://github.com/MikeMcl/decimal.js/) library and its `toNearest` method. I used it myself for...