Skip to content

Commit

Permalink
Update text color in logo
Browse files Browse the repository at this point in the history
- Closes #359
  • Loading branch information
kamilmielnik committed Oct 23, 2024
1 parent 7c70918 commit e4594d5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/scrabble-solver/public/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ interface Props {
}

const Tile: FunctionComponent<Props> = ({ character, className, color, points, size, transform, x, y }) => (
<g className={className} transform={transform}>
<g className={className} fill="#222" transform={transform}>
<rect fill={color} height={size} rx={size * 0.15} width={size} x={x} y={y} />

<text
Expand Down

0 comments on commit e4594d5

Please sign in to comment.