jer233 commited on
Commit
02185e1
·
verified ·
1 Parent(s): 3ffb1f6

Update demo.py

Browse files
Files changed (1) hide show
  1. demo.py +7 -2
demo.py CHANGED
@@ -47,8 +47,8 @@ css = """
47
  display: flex;
48
  justify-content: center;
49
  width: 100%;
50
- Height: 100%;
51
  }
 
52
  /* Adjusting layout for Input Text and Inference Result */
53
  .input-row {
54
  display: flex;
@@ -67,7 +67,12 @@ css = """
67
  /* Set button widths to match the Select Model width */
68
  .button {
69
  width: 250px; /* Same as the select box width */
70
- Height: 100px;
 
 
 
 
 
71
  }
72
  """
73
 
 
47
  display: flex;
48
  justify-content: center;
49
  width: 100%;
 
50
  }
51
+
52
  /* Adjusting layout for Input Text and Inference Result */
53
  .input-row {
54
  display: flex;
 
67
  /* Set button widths to match the Select Model width */
68
  .button {
69
  width: 250px; /* Same as the select box width */
70
+ height: 100px; /* Button height */
71
+ }
72
+
73
+ /* Set height for the Select Model dropdown */
74
+ .gradio-dropdown select {
75
+ height: 100px; /* Set height to 100px */
76
  }
77
  """
78