Chanan Braunstein

Results 34 issues of Chanan Braunstein

Currently only Parse errors are displayed, other errors may occur.

enhancement

1. Color `$` in front of a quote mark or in front `@"` mark 2. Color variables in the interpolated string: `$"{colorMe}"`

enhancement

Right now, SSB works like this: ``` If everything is working right, the background of this paragraph tag should be pink. @code { private string div; protected override async Task...

enhancement
help wanted

- [x] The div / button example is old and should be updated in "The Basics" - [x] Nested selectors examples should include the `@code` section - [ ] Ensure...

Documentation

This should be possible: ``` //Some rules //More rules ```

enhancement

CSS 3 Spec: https://www.w3.org/TR/selectors-3/#selector-syntax ``` .controls-arrow:hover:before ``` Work around is: ``` .controls-arrow:hover:before { } ``` I think the spec says that any simple pseudo class can be chained but only...

enhancement

Themes need some TLC... Maybe the ability to define a theme inside a tag will help something along the lines: ``` colors.background: red; ``` or maybe json would be better?...

enhancement

Hi, In react/redux I use Redux Logger to log the actions to console in development. I was wondering if you have a plan to allow middleware or maybe just build...

When testing a file that imports "node-fetch", I get the jest error regarding imports (other test files in the same project that don't import node-fetch are fine): ``` ● Test...

I ran: ``` serverless init fullstack-app cd fullstack-app ``` Then edited `.env` and entered my AWS key details. Then: ``` serverless login //This is required but not mentioned in the...