Aron
Aron
### Description The HTML generated by Master CSS SSR: ```js import { renderHTML } from '@master/css' ... const html = renderHTML(html); res.set('Content-Type', 'text/html'); res.send(Buffer.from(html)); ``` ```html .text\:center { text-align: center...
### What is the improvement or update you wish to see? I would like to see more examples of authoring Master CSS plugins/packages. ### Is there any context that might...
### Description ## Current ```js import { customElement } from 'lit/decorators.js' import MasterCSS from '@master/css' import config from '../master.css' @customElement('my-element') export class MyElement extends LitElement { css: MasterCSS connectedCallback() {...
### Description Suppose there is an SVG to be filled with black when the parent button is disabled. ```html ... ``` ### Current Reactive Syntax ```html ... ``` Generated CSS:...
### What is the improvement or update you wish to see? https://beta.css.master.co/docs/grid-areas ### Is there any context that might help us understand? https://developer.mozilla.org/en-US/docs/Web/CSS/grid-area ### Does the docs page already exist?...
### Description `right:max(0px,calc(50%-45.3125rem))` is a valid class. ### Reproduction _No response_ ### System Informations _No response_
### Description ### Reproduction _No response_ ### System Informations _No response_
### Description  ### Reproduction _No response_ ### System Informations macOS
### Description ## Case 1 ```diff - grid@supports(display:grid) + grid@supported ``` ```css @supports (display:grid) { .grid\@supported { display: grid } } ``` ## Case 2 ```diff - {grid;w:100dvw}@supports(display:grid)and(width:100dvw) + {grid;w:100dvw}@supported...
### Description ```svelte import { ThemeServiceProvider } from '@master/css.svelte' ... ```