- What gets lost going Stylus → CSS?
- Variables, mixins, nesting, and arithmetic all get resolved to their concrete values. The output is a flat stylesheet with no preprocessor features.
- Does it preserve @media queries?
- Yes. Nested media queries (a Stylus feature) get hoisted to top-level CSS media queries with adjusted selectors.
- Will deeply nested Stylus work?
- Yes — every level of nesting expands into compound selectors. Very deep nesting produces verbose CSS; flatten your Stylus source if the output looks bloated.
- Can I use this as a build step?
- For small snippets yes. For a full build, use the Stylus CLI in your pipeline — this tool is for quick one-off conversions.