Aron

Results 52 comments of Aron

Tbh, we'd love to support this new feature, but allow me to put it on the todo list, as I'd like to implement it after a thorough consideration and design...

@gammx What's your Master CSS version now? It works for me. Generated CSS ![Screen Shot 2022-08-25 at 10 31 14 PM](https://user-images.githubusercontent.com/33840671/186693398-f0930373-1d92-4431-98c4-394d006c1aa7.jpg) JIT in console ![Screen Shot 2022-08-25 at 10 32...

If it is JIT, Master CSS will use the native `style.sheet` API to manipulate CSS rules. You can't see it through inspect, but you can use `console.log`.

We've missed `gap-x` and `gap-y` in the Gap documentation, but it always works.

๐ŸŽ‰ Improved. https://docs.master.co/css/gap

@karchung0930 Master CSS uniformly puts media queries last. You are right, it is indeed the documentation that should be improved. ```html ... ... ... ```

@karchung0930 Can you provide a https://stackblitz.com/ example to reproduce the problem? Not very clear about your question. ![Screen Shot 2022-07-20 at 9 39 27 PM](https://user-images.githubusercontent.com/33840671/179996625-2a4ffc52-fd59-4060-a34b-15e458f9393e.jpg)

@karchung0930 `hide::after` will of course hide the after pseudo-element inside `::after`.

Adding the plugin to `nuxt.options.build.transpile` is works for me. ```ts import { defineNuxtModule, addServerPlugin, createResolver } from '@nuxt/kit' import { name } from '../package.json' export default defineNuxtModule({ meta: { name,...

I also tried to write a plugin; unfortunately, **the entry doesn't support marking as external**. ```js import type { Plugin } from 'esbuild' import path from 'upath' export const createShakableLibPlugin...