Skip to content

Commit

Permalink
Fix image dimensions in recipes.
Browse files Browse the repository at this point in the history
  • Loading branch information
shartte committed Oct 30, 2023
1 parent 44f4ddc commit 434734b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/components/recipes/recipe.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@

.recipeContainer .recipeArrow {
width: 9vw;
height: auto;
}
}

Expand Down Expand Up @@ -161,6 +162,7 @@
grid-row: 1;
grid-column: 2;
width: calc(17px * var(--gui-scale));
height: auto;
margin-top: calc(10px * var(--gui-scale));
}

Expand All @@ -169,12 +171,14 @@
grid-row: 3;
grid-column: 2;
width: calc(17px * var(--gui-scale));
height: auto;
margin-bottom: calc(10px * var(--gui-scale));
}

/* right arrow */
.inscriberGrid > :nth-child(7) {
grid-row: 2;
grid-column: 3;
width: auto;
height: calc(16px * var(--gui-scale));
}

0 comments on commit 434734b

Please sign in to comment.