[Feature] Add language #19
2 changed files with 6 additions and 1 deletions
|
@ -3,3 +3,8 @@
|
|||
background-color: color(from var(--info) xyz x y z / .2);
|
||||
}
|
||||
}
|
||||
|
||||
.root {
|
||||
display: contents !important;
|
||||
all: inherit;
|
||||
}
|
|
@ -177,7 +177,7 @@ const Root: ParentComponent = (props) => {
|
|||
});
|
||||
};
|
||||
|
||||
return <div ref={setRoot} tabIndex={0} onKeyDown={onKeyboardEvent} onKeyUp={onKeyboardEvent} style={{ 'display': 'contents' }}>{c()}</div>;
|
||||
return <div ref={setRoot} tabIndex={0} onKeyDown={onKeyboardEvent} onKeyUp={onKeyboardEvent} class={css.root}>{c()}</div>;
|
||||
};
|
||||
|
||||
export const selectable = (element: HTMLElement, options: Accessor<{ value: object, key?: string }>) => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue