imorcillo commited on
Commit
aed8988
·
verified ·
1 Parent(s): 6f086b0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +24 -0
app.py CHANGED
@@ -164,6 +164,30 @@ button.selected::after{
164
  background: #E50914;
165
  }
166
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
167
  """
168
 
169
 
 
164
  background: #E50914;
165
  }
166
 
167
+ #popup-overlay {
168
+ position: fixed;
169
+ top: 0; left: 0;
170
+ width: 100vw; height: 100vh;
171
+ display: flex; justify-content: center; align-items: center;
172
+ background: rgba(0, 0, 0, 0.5);
173
+ z-index: 999;
174
+ }
175
+
176
+ #popup-box {
177
+ background: white;
178
+ padding: 20px;
179
+ border-radius: 10px;
180
+ box-shadow: 0 0 20px rgba(0,0,0,0.3);
181
+ width: 340px;
182
+ text-align: center;
183
+ }
184
+
185
+ #popup-inner .gr-button {
186
+ margin-top: 15px;
187
+ background-color: #5b65a7;
188
+ color: white;
189
+ }
190
+
191
  """
192
 
193