braid-design-system
Version:
Themeable design system for the SEEK Group
24 lines (23 loc) • 658 B
JavaScript
import { setFileScope, endFileScope } from "@vanilla-extract/css/fileScope";
import { style } from "@vanilla-extract/css";
import { calc } from "@vanilla-extract/css-utils";
import { vars } from "../../themes/vars.css.mjs";
setFileScope("src/lib/components/Textarea/Textarea.css.ts", "braid-design-system");
const field = style({
resize: "vertical",
background: "transparent",
minHeight: calc.multiply(vars.grid, 15)
}, "field");
const highlights = style({
color: "transparent !important",
wordBreak: "break-word",
whiteSpace: "pre-wrap",
":after": {
content: '"\\A"'
}
}, "highlights");
endFileScope();
export {
field,
highlights
};