1
0
Fork 0

Add Bee Line Drawing

This commit is contained in:
Zee 2023-12-09 19:37:02 +00:00
parent 0d3dbe5d23
commit 103ee175ec
3 changed files with 61 additions and 1 deletions

View file

@ -100,7 +100,7 @@ export const DesignCard = ({ name, lineDrawing = false }) => {
>
{t(`designs:${name}.t`)}
</h5>
<div className={lineDrawing ? 'py-8 px-4' : 'py-8'}>
<div className={lineDrawing ? 'p-4 grow w-full' : 'py-8'}>
<LineDrawing className="h-64 max-w-full m-auto my-4 text-base-content" />
</div>
<div

File diff suppressed because one or more lines are too long

View file

@ -14,6 +14,7 @@ import { Bruce, BruceFront, BruceBack } from 'shared/components/designs/linedraw
import { Hortensia, HortensiaFront } from 'shared/components/designs/linedrawings/hortensia.mjs'
import { Simon, SimonFront, SimonBack } from 'shared/components/designs/linedrawings/simon.mjs'
import { Wahid, WahidFront, WahidBack } from 'shared/components/designs/linedrawings/wahid.mjs'
import { Bee, BeeFront } from 'shared/components/designs/linedrawings/bee.mjs'
export const lineDrawingsFront = {
aaron: AaronFront,
@ -28,6 +29,7 @@ export const lineDrawingsFront = {
hortensia: HortensiaFront,
simon: SimonFront,
wahid: WahidFront,
bee: BeeFront,
}
export const lineDrawingsBack = {
@ -40,6 +42,7 @@ export const lineDrawingsBack = {
bruce: BruceBack,
simon: SimonBack,
wahid: WahidBack,
bee: Bee,
}
export const lineDrawings = {