This patch adds support for the `react` selector engine that allows selecting DOM elements based on the component name. > **NOTE**: in case of multi-root components (React.Fragment), `react` engine will select all root DOM elements. > **NOTE**: `react` engine supports react v15+. References #7189
10 lines
273 B
CSS
10 lines
273 B
CSS
:root {
|
|
--non-monospace: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
|
--monospace: Consolas, Menlo, monospace;
|
|
font-size: 14px;
|
|
}
|
|
|
|
body {
|
|
font-family: var(--non-monospace);
|
|
}
|