mrbeliever commited on
Commit
8f19cf6
Β·
verified Β·
1 Parent(s): 16e72fa

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -3
app.py CHANGED
@@ -46,9 +46,19 @@ def run_example(image, text_input=default_question, model_id="microsoft/Phi-3.5-
46
 
47
  css = """
48
  #output {
49
- height: 500px;
50
- overflow: auto;
51
- border: 1px solid #ccc;
 
 
 
 
 
 
 
 
 
 
52
  }
53
  #model_selector, #text_input {
54
  display: none !important;
 
46
 
47
  css = """
48
  #output {
49
+ margin-top: 15px;
50
+ border: 2px solid #333; /* Darker outline */
51
+ border-radius: 8px;
52
+ height: 180px; /* Fixed height */
53
+ object-fit: contain; /* Ensure image fits within the fixed height */
54
+ }
55
+
56
+ #input_img {
57
+ margin-top: 15px;
58
+ border: 2px solid #333; /* Darker outline */
59
+ border-radius: 8px;
60
+ height: 180px; /* Fixed height */
61
+ object-fit: contain; /* Ensure image fits within the fixed height */
62
  }
63
  #model_selector, #text_input {
64
  display: none !important;