Skip to content

Commit 6168fed

Browse files
committed
fix css
1 parent fc69506 commit 6168fed

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

wasp/assets/css/style.css

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
/* brighter secondary */
1212
--accent-blue: #00d2ff;
1313
--danger-red: #ff3e3e;
14+
color-scheme: dark;
1415
}
1516

1617
body {
@@ -400,6 +401,10 @@ footer {
400401
color: #666;
401402
}
402403

404+
#faq {
405+
background-color: var(--bg-color);
406+
}
407+
403408
/* FAQ Accordion - Premium Terminal Design */
404409
.accordion-item {
405410
background: transparent !important;
@@ -437,6 +442,11 @@ footer {
437442
transition: all 0.3s ease;
438443
}
439444

445+
.accordion-button:hover {
446+
color: var(--terminal-green) !important;
447+
background-color: rgba(0, 255, 65, 0.05) !important;
448+
}
449+
440450
.accordion-button::after {
441451
background-image: none !important;
442452
content: '[+]';
@@ -450,7 +460,9 @@ footer {
450460
}
451461

452462
.accordion-button:not(.collapsed) {
453-
background-color: rgba(0, 255, 65, 0.05) !important;
463+
background-color: var(--card-bg) !important;
464+
/* Force same as desktop */
465+
color: var(--terminal-green) !important;
454466
border-bottom: 1px solid rgba(0, 255, 65, 0.1) !important;
455467
}
456468

@@ -463,6 +475,12 @@ footer {
463475
.accordion-button:focus {
464476
box-shadow: none !important;
465477
border-color: rgba(0, 255, 65, 0.3) !important;
478+
background-color: var(--card-bg) !important;
479+
color: var(--terminal-green) !important;
480+
}
481+
482+
.accordion-button:active {
483+
background-color: var(--card-bg) !important;
466484
}
467485

468486
.accordion-body {

0 commit comments

Comments
 (0)