Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -105,18 +105,18 @@ class GradioInterface:
|
|
105 |
.container {
|
106 |
border: 2px solid #2196F3;
|
107 |
border-radius: 10px;
|
108 |
-
padding:
|
109 |
-
margin:
|
110 |
background: white;
|
111 |
position: relative;
|
112 |
}
|
113 |
|
114 |
.container::before {
|
115 |
position: absolute;
|
116 |
-
top: -
|
117 |
-
left:
|
118 |
background: white;
|
119 |
-
padding: 0
|
120 |
color: #2196F3;
|
121 |
font-weight: bold;
|
122 |
font-size: 1.2em;
|
|
|
105 |
.container {
|
106 |
border: 2px solid #2196F3;
|
107 |
border-radius: 10px;
|
108 |
+
padding: 10px; /* Reduced from 20px */
|
109 |
+
margin: 10px; /* Reduced from 15px */
|
110 |
background: white;
|
111 |
position: relative;
|
112 |
}
|
113 |
|
114 |
.container::before {
|
115 |
position: absolute;
|
116 |
+
top: -10px; /* Reduced from -12px */
|
117 |
+
left: 10px;
|
118 |
background: white;
|
119 |
+
padding: 0 10px;
|
120 |
color: #2196F3;
|
121 |
font-weight: bold;
|
122 |
font-size: 1.2em;
|