Aron

Results 58 issues of 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...

feature
undocumented

### 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...

undocumented

### 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() {...

feature
lit

### 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_

eslint

### Description ### Reproduction _No response_ ### System Informations _No response_

bug
eslint

### Description ![image](https://user-images.githubusercontent.com/33840671/230815728-9d5c3d02-4190-4640-b334-42e45b8c4443.png) ### Reproduction _No response_ ### System Informations macOS

bug
react
svelte

### 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...

feature

### Description ```svelte import { ThemeServiceProvider } from '@master/css.svelte' ... ```

svelte
undocumented