Skip to content

Commit

Permalink
Fix typo in grid CSS variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
spohlenz committed Jul 24, 2024
1 parent bf2921b commit c5db697
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/assets/bundle/trestle/admin.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion frontend/css/components/_grid.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
--grid-column-min-width: 0;

display: grid;
grid-template-columns: repeat(var(--grid-column-count), minmax(var(--grid-count-min-width), 1fr));
grid-template-columns: repeat(var(--grid-column-count), minmax(var(--grid-column-min-width), 1fr));
gap: var(--grid-gap);

> .grid-col-full {
Expand Down

0 comments on commit c5db697

Please sign in to comment.