Skip to content

Commit

Permalink
re-enables sample recipe
Browse files Browse the repository at this point in the history
  • Loading branch information
klalicki committed Dec 18, 2023
1 parent 5f6581d commit dc9d205
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const App = () => {
Load Sample Recipe
</button>
</header>
<main className="w-full pt-4 pb-4 flex flex-col items-center">
<main className="w-full flex flex-col items-center">
{/* <FileLoader /> */}
<RecipeViewerWrapper />
</main>
Expand Down
2 changes: 1 addition & 1 deletion src/components/RecipeViewer/RecipeViewer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const RecipeViewer = () => {
const stepCount = scaledRecipe.steps.length;
if (isRecipeLoaded) {
return (
<section className="p-4 flex flex-col gap-4">
<section className="p-4 flex flex-col gap-2">
<h1 className=" text-2xl font-bold focus">{scaledRecipe.title}</h1>
<p>{scaledRecipe.description}</p>
<TargetScaleSetter />
Expand Down

0 comments on commit dc9d205

Please sign in to comment.