Skip to content

Commit

Permalink
remove rotation property
Browse files Browse the repository at this point in the history
  • Loading branch information
RheingoldRiver committed Oct 8, 2023
1 parent 89086ab commit 8b32d21
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/components/Wordmark/Wordmark.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,7 @@ export const Wordmark = ({ gridArea }: { gridArea: string }) => {
return (
<div className={clsx("ml-16 flex flex-row gap-1 items-center mb-2")} style={{ gridArea }}>
{pentominoesTitle.map((p) => (
<div
className={clsx(p.class, "flex items-center justify-center")}
style={{
transform: `rotate(${p.cssRotation}deg)`,
}}
>
<div className={clsx(p.class, "flex items-center justify-center")}>
<PentominoDisplay
pentomino={PENTOMINOES[p.pentomino]}
color={displayColors[pentominoColors[p.pentomino]]}
Expand Down

0 comments on commit 8b32d21

Please sign in to comment.