We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de2fb65 commit bcdfe91Copy full SHA for bcdfe91
1 file changed
style.css
@@ -198,6 +198,29 @@ input {
198
font-size: 0.9rem;
199
}
200
201
+/* ===== Popup button style (same as main buttons) ===== */
202
+.popup-btn {
203
+ padding: 0.8rem 1.2rem;
204
+ font-size: 1rem;
205
+ font-weight: 600;
206
+ border: none;
207
+ border-radius: 8px;
208
+ cursor: pointer;
209
+ background: #4f46e5;
210
+ color: white;
211
+ transition: all 0.2s ease;
212
+}
213
+
214
+.popup-btn:hover {
215
+ background: #6366f1;
216
+ transform: translateY(-2px);
217
+ box-shadow: 0 4px 8px rgba(0,0,0,0.15);
218
219
220
+.popup-btn:active {
221
+ transform: translateY(0);
222
223
224
/* ===== Button Glow ===== */
225
.button-glow {
226
box-shadow: 0 0 12px 4px rgba(79, 70, 229, 0.7);
0 commit comments