You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When opening the starter files for Master Gatsby and navigating to the Order Ahead link at the /order URL if you add one item to the cart you might noticed a stretched image in the middle of the column.
You can fix this by adding a max-height: 100px (can make larger if you want items to be bigger at first) in the MenuItemStyles.
To fix the items being in the middle of the column you can add align-content: flex-start to the &.order, &.menu class in OrderStyles.js.
Before:
After:
The text was updated successfully, but these errors were encountered:
When opening the starter files for Master Gatsby and navigating to the Order Ahead link at the /order URL if you add one item to the cart you might noticed a stretched image in the middle of the column.
You can fix this by adding a
max-height: 100px
(can make larger if you want items to be bigger at first) in theMenuItemStyles
.To fix the items being in the middle of the column you can add
align-content: flex-start
to the&.order, &.menu
class inOrderStyles.js
.Before:
After:
The text was updated successfully, but these errors were encountered: