Results 30 comments of Mark Fayngersh

@EmilTholin Any plans to merge this? Would be extremely useful to be able to implement features like active navlink styling.

Would be still super useful as of rescript v9.1.4 so that "variant" React props can be passed nicely to external modules, for example with [Headless React](https://headlessui.dev/react/menu): ```res @react.component @module("@headlessui/react") external...

I am also currently running into the problem of needing to use a [custom](https://github.com/Tarmil/FSharp.SystemTextJson) JsonConverter that's designed to work with System.Text.Json, but Azure Functions appears to enforce Newtonsoft with no...

```sh > cargo --version cargo 1.54.0 (5ae8d74b3 2021-06-22) > rustc --version rustc 1.54.0 (a178d0322 2021-07-26) > rustup show Default host: aarch64-apple-darwin rustup home: /Users/mark/.rustup stable-aarch64-apple-darwin (default) rustc 1.54.0 (a178d0322 2021-07-26)...

@icyJoseph ```sh my-rust-app/api [main] » cargo run Compiling index v1.0.0 (/Users/mark/src/pheuter/my-rust-app/api) Finished dev [unoptimized + debuginfo] target(s) in 2.63s Running `target/debug/user` thread 'main' panicked at 'Could not find runtime API...

@icyJoseph I have run through the following commands, but still get the same error: ```sh $ brew install filosottile/musl-cross/musl-cross $ mkdir .cargo $ echo $'[target.x86_64-unknown-linux-musl]\nlinker = "x86_64-linux-musl-gcc"' > .cargo/config ```

Ah, I was struggling to even find the source of that message, looks like it has to do with anywhere we call `rgba()`, and I had it in one place:...

This change appears to placate the preprocessor: ```css box-shadow: 0px -4px 6px -1px #00000019, 0px -2px 4px -1px #0000000f; ```

Nice! Will take a look when I get the chance. Some people have expressed that Radium may not be considered an "essential" part of a React app, especially considering its...