Add blue rectangle - What wind.surf will do ?
Browse files
app.py
CHANGED
@@ -72,10 +72,16 @@ demo = gr.ChatInterface(
|
|
72 |
margin: 8px 0;
|
73 |
}
|
74 |
#component-0 {
|
75 |
-
border:
|
76 |
-
border-radius:
|
77 |
-
padding:
|
78 |
-
background-color:
|
|
|
|
|
|
|
|
|
|
|
|
|
79 |
}
|
80 |
"""
|
81 |
)
|
|
|
72 |
margin: 8px 0;
|
73 |
}
|
74 |
#component-0 {
|
75 |
+
border: 4px solid #2196F3;
|
76 |
+
border-radius: 12px;
|
77 |
+
padding: 15px;
|
78 |
+
background-color: white;
|
79 |
+
box-shadow: 0 0 10px rgba(33, 150, 243, 0.3);
|
80 |
+
margin: 10px 0;
|
81 |
+
}
|
82 |
+
#component-0:focus-within {
|
83 |
+
border-color: #1976D2;
|
84 |
+
box-shadow: 0 0 15px rgba(33, 150, 243, 0.5);
|
85 |
}
|
86 |
"""
|
87 |
)
|