1
0
Fork 0

wip(lab): More Xray work

This commit is contained in:
Joost De Cock 2022-01-30 12:21:08 +01:00
parent 7ae2c4b1eb
commit e62a862559
8 changed files with 166 additions and 105 deletions

View file

@ -5,7 +5,11 @@ import CoreSettings from './core-settings'
import Xray from './xray'
export const Ul = props => <ul className="pl-5 list-inside">{props.children}</ul>
export const Li = props => <li className="flex flex-row">{props.children}</li>
export const Li = props => (
<li className="flex flex-row hover:border-r-2 hover:border-r-secondary">
{props.children}
</li>
)
export const Details = props => (
<details className="grow" open={props.open || false}>
{props.children}