File size: 947 Bytes
e714957
73eb813
 
 
 
 
 
 
 
8a690b3
875832c
e714957
 
8a690b3
 
 
 
73eb813
8a690b3
 
 
e714957
 
73eb813
 
 
8a690b3
 
73eb813
8a690b3
73eb813
 
8a690b3
e714957
b0ec2aa
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
e714957
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
CSS_STYLE = """
/* Use full page width */
.gradio-container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 16px 24px;
}

/* Image box stability */
#image-box {
    max-height: 300px;
}

#image-box img {
    object-fit: contain;
}

/* Output box stability */
#output-box textarea {
    min-height: 180px;
    max-height: 240px;
}

/* Prevent columns from collapsing */
.gradio-row {
    gap: 24px;
}

/* Mobile responsiveness */
@media (max-width: 900px) {
    .gradio-row {
        flex-direction: column;
    }
}

/* Reduce vertical gaps in right panel */
#right-panel .gradio-form {
    gap: 8px !important;
}

/* Tighten spacing between label and component */
#right-panel label {
    margin-bottom: 4px !important;
}

/* Remove excess top spacing above textbox */
#output-box {
    margin-top: -4px !important;
}

/* Compact textbox padding slightly */
#output-box textarea {
    padding-top: 8px !important;
}

"""