histogram width divide by mode, not total #2

Merged
christofsteel merged 47 commits from honigle into main 2022-02-02 13:59:36 +01:00
Showing only changes of commit 8d0955e02b - Show all commits

View file

@ -8,14 +8,20 @@ type Props = {
export const AboutModal = ({ isOpen, handleClose }: Props) => { export const AboutModal = ({ isOpen, handleClose }: Props) => {
return ( return (
<BaseModal title="About" isOpen={isOpen} handleClose={handleClose}> <BaseModal title="About" isOpen={isOpen} handleClose={handleClose}>
<p className="text-sm text-gray-500 dark:text-gray-300"> This is a honey powered fork of an open source word guessing game -{' '}
This is an open source word guessing game -{' '}
<a <a
href="https://github.com/hannahcode/GAME" href="https://git.k-fortytwo.de/christofsteel/honigle"
className="underline font-bold" className="underline font-bold"
> >
check out the code here check out the code here
</a>{' '} </a>{' '}
and{' '}
<a
href="https://github.com/hannahcode/word-guessing-game"
className="underline font-bold"
>
the original code here
</a>{' '}
</p> </p>
</BaseModal> </BaseModal>
) )