diff --git a/frontend/src/App.css b/frontend/src/App.css index 6293063..8a48b11 100644 --- a/frontend/src/App.css +++ b/frontend/src/App.css @@ -29,7 +29,7 @@ } .section-heading { - @apply text-xl font-bold pb-2 pt-4; + @apply text-xl font-bold pb-4 pt-4; } .subsection-heading { @@ -112,8 +112,13 @@ @apply pb-4 border-b border-gray-400; } + /* containers */ .circular-container { @apply flex-shrink-0 w-7 h-7 rounded-full bg-blue-300 text-white flex items-center justify-center shadow-sm; } + .highlight-container-bg { + @apply bg-gray-200 rounded p-2; + } + } \ No newline at end of file diff --git a/frontend/src/components/recipes/RecipeDetailPage.tsx b/frontend/src/components/recipes/RecipeDetailPage.tsx index a67d7dc..07f0daa 100644 --- a/frontend/src/components/recipes/RecipeDetailPage.tsx +++ b/frontend/src/components/recipes/RecipeDetailPage.tsx @@ -97,7 +97,7 @@ export default function RecipeDetailPage() { {/* Servings */}
Für {recipeWorkingCopy.servings.amount} {recipeWorkingCopy.servings.unit}
@@ -117,11 +117,11 @@ export default function RecipeDetailPage() {