layout fix

This commit is contained in:
2026-03-20 21:55:46 +00:00
parent c114bc84e8
commit 3f6a5e7c1e
2 changed files with 8 additions and 5 deletions

View File

@@ -9,6 +9,10 @@ html, body {
background-image: url("https://www.transparenttextures.com/patterns/tileable-wood-colored.png") !important; background-image: url("https://www.transparenttextures.com/patterns/tileable-wood-colored.png") !important;
background-size: 500px; background-size: 500px;
background-attachment: fixed; background-attachment: fixed;
background-repeat: repeat !important;
min-height: 100vh !important;
width: 100% !important;
display: block !important;
} }
.landing-wrapper { .landing-wrapper {

View File

@@ -1,12 +1,11 @@
<template> <template>
<div class="recipe-bg min-h-screen pb-12"> <div class="recipe-bg">
<v-container class="py-10"> <v-container class="py-10 d-flex justify-center"> <RecipeDisplay
<RecipeDisplay
v-if="normalizedRecipe" v-if="normalizedRecipe"
:recipe="normalizedRecipe" :recipe="normalizedRecipe"
:is-public-view="true" :is-public-view="true"
class="recipe-card mx-auto" class="recipe-card"
style="max-width: 1000px;" style="width: 100%; max-width: 1000px;"
/> />
<v-progress-linear v-else indeterminate color="#8c4a32" /> <v-progress-linear v-else indeterminate color="#8c4a32" />
</v-container> </v-container>