braid-design-system
Version:
Themeable design system for the SEEK Group
20 lines (19 loc) • 606 B
JavaScript
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
};