Jacob Parker

Results 41 issues of Jacob Parker

How would this be achieved?

When writing inline SVGs for CSS, you have to replace `#`s with `%23`. ```css background: url('data:image/svg+xml,') center / 12px no-repeat; ``` It would be cool if these were highlighted too!

enhancement

I cannot find the functionality to find the distance between two shapes, even though this functionality is in the original box2d library.

1. Construct a bezier using four points where the x values of the first and second points are identical 2. Call `.outline` with any number on the constructed bezier 3....

bug

I think we can enable it on * opacity * transforms

In styled-components, you can write, ```jsx const A = styled... const B = styled.div` ${A}:hover & { color: red } ` ``` We should be able to do the same....

Similar to how '3 hours' and '8 days' return the time relative to then, it should be possible to add dates like this.

enhancement

'180 days' should imply '180 days from now', like how '5 days' works.

#### Input ```css .test { font: inherit; font-size: 14px; } .other { color: red; font-size: 14px; } ``` #### Output (Formatted) ```css .other, .test { font-size: 14px; } .test {...

Say I have a list, and each item in the list has a `background-color`. The background color can change, so we put a `transition: background 0.5s linear`. This disables the...