UNPKG

braid-design-system

Version:
20 lines (19 loc) 606 B
import { setFileScope, endFileScope } from "@vanilla-extract/css/fileScope"; import { style } from "@vanilla-extract/css"; import { debugTouchable } from "./debugTouchable.mjs"; import { virtualTouchableRules } from "./virtualTouchableRules.mjs"; setFileScope("src/lib/components/private/touchable/virtualTouchable.css.ts", "braid-design-system"); const virtualTouchable = style([{ position: "relative", "::after": { content: '""', position: "absolute", ...virtualTouchableRules } }, debugTouchable({ after: true })], "virtualTouchable"); endFileScope(); export { virtualTouchable };