Skip to content

Commit

Permalink
feat: number grid
Browse files Browse the repository at this point in the history
  • Loading branch information
heypoom committed Dec 17, 2023
1 parent 6c71d6f commit 437e711
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion canvas/src/blocks/value-view/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export const ValueViewBlock = memo((props: Props) => {
switch (type) {
case "Int": {
return (
<div className="flex font-mono gap-x-2 px-2 py-1">
<div className="grid grid-cols-8 font-mono gap-x-2 px-2 py-1">
{values.map((v, i) => (
<div key={i}>{v}</div>
))}
Expand Down

0 comments on commit 437e711

Please sign in to comment.