dine24 commited on
Commit
c59396a
·
verified ·
1 Parent(s): 07be303

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -3
app.py CHANGED
@@ -69,18 +69,25 @@ with gr.Blocks(css="""
69
  .logo-container {
70
  display: flex;
71
  justify-content: center;
72
- margin-bottom: -40px;
 
 
73
  }
74
  .logo-container img {
75
- max-width: 280px;
76
  height: auto;
77
  border-radius: 8px;
 
78
  }
79
  """, theme=gr.themes.Soft()) as demo:
80
 
81
  with gr.Column():
82
  with gr.Row():
83
- gr.HTML("<div class='logo-container'><img src='OnlineRetail.png' alt='Luxury Logo'></div>")
 
 
 
 
84
  gr.Markdown("### 🛋️ Luxury Decor Assistant")
85
  gr.Markdown("Ask your decor questions based on real product descriptions. <br> Powered by **DeBERTa + FAISS + Falcon 1B**.")
86
 
 
69
  .logo-container {
70
  display: flex;
71
  justify-content: center;
72
+ align-items: center;
73
+ margin-bottom: -20px;
74
+ padding-top: 20px;
75
  }
76
  .logo-container img {
77
+ max-width: 220px;
78
  height: auto;
79
  border-radius: 8px;
80
+ box-shadow: 0px 2px 8px rgba(0,0,0,0.1);
81
  }
82
  """, theme=gr.themes.Soft()) as demo:
83
 
84
  with gr.Column():
85
  with gr.Row():
86
+ gr.HTML("""
87
+ <div class='logo-container'>
88
+ <img src='file/OnlineRetail.png' alt='Luxury Decor Logo' />
89
+ </div>
90
+ """)
91
  gr.Markdown("### 🛋️ Luxury Decor Assistant")
92
  gr.Markdown("Ask your decor questions based on real product descriptions. <br> Powered by **DeBERTa + FAISS + Falcon 1B**.")
93