Skip to content

Commit

Permalink
Minor responsivenesss fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sadanandpai committed Apr 5, 2024
1 parent ee3a4cc commit af25550
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
}
}

@media (width >= 600px) {
@media (width >= 640px) {
.controller {
.pathInfo {
display: flex;
Expand Down
2 changes: 1 addition & 1 deletion src/apps/path-finder/components/grid/grid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ function Grid() {
};

return (
<div className={classes.grid} style={gridStyle} ref={ref}>
<div className={classes.grid} style={gridStyle} id="grid" ref={ref}>
{grid.map((row, rowIndex) =>
row.map((cellType, colIndex) => (
<button
Expand Down

0 comments on commit af25550

Please sign in to comment.