braid-design-system
Version:
Themeable design system for the SEEK Group
19 lines (18 loc) • 576 B
JavaScript
const fileScope = require("@vanilla-extract/css/fileScope");
const css = require("@vanilla-extract/css");
fileScope.setFileScope("src/lib/components/MenuItem/useMenuItem.css.ts", "braid-design-system");
const menuItem = css.style({
selectors: {
[`&::-moz-focus-inner`]: {
border: 0
}
}
}, "menuItem");
const menuItemLeftSlot = css.style({
height: "0px"
// Prevents the slot from affecting the height of the MenuItem
}, "menuItemLeftSlot");
fileScope.endFileScope();
exports.menuItem = menuItem;
exports.menuItemLeftSlot = menuItemLeftSlot;
;