wip: Started working on new development environment
This commit is contained in:
parent
ace86eaf85
commit
54aefa8437
45 changed files with 1722 additions and 43 deletions
|
@ -30,7 +30,8 @@ const icons = {
|
|||
const order = obj => orderBy(obj, ['__order', '__title'], ['asc', 'asc'])
|
||||
|
||||
// Component for the collapse toggle
|
||||
const Chevron = ({w=8, m=2}) => <svg className={`
|
||||
// Exported for re-use
|
||||
export const Chevron = ({w=8, m=2}) => <svg className={`
|
||||
fill-current opacity-75 w-${w} h-${w} mr-${m}
|
||||
details-toggle hover:text-secondary sm:hover:text-secondary-focus
|
||||
`}
|
||||
|
@ -43,7 +44,8 @@ const currentChildren = current => Object.values(order(current))
|
|||
.filter(entry => (typeof entry === 'object'))
|
||||
|
||||
// Shared classes for links
|
||||
const linkClasses = `text-lg lg:text-xl
|
||||
// Exported for re-use
|
||||
export const linkClasses = `text-lg lg:text-xl
|
||||
py-1 hover:cursor-pointer
|
||||
text-base-content sm:text-neutral-content
|
||||
hover:text-secondary
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue