Craig Condon
Craig Condon
There may be cases where separate HTML elements are using the same design -- it would be nice to detect where this duplicate code is. ### Considerations - UI differences...
```html :root { --color-background-red: red; } ``` ```javascript import { vars } from "./styles.pc"; vars["--color-background-red"]; ``` #### Considerations - nested style selectors changing var colors
Should update Engine + DependencyGraph to use more parallel futures
Should be able to do this: ```html &:within($atoms.float) { color: red; } ``` Currently this is necessary as an alternative: ```html &:within(:global(.float)) { color: red; } ```
This should be a flag defined with `paperclip.config.json`. Option should be used to remove CSS that is not used in _any_ PC living in `src`. ### Considerations - third-party CSS...