Skip to content

Commit b5389b2

Browse files
foxtaclesclaude
andcommitted
Fix tooltip CSS issues on Config page
- Allow tooltips to overflow container when section is open - Expand touch target for tooltip triggers on mobile devices Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 5ce1b1e commit b5389b2

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

src/app.css

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -579,6 +579,10 @@ body {
579579
overflow: hidden;
580580
}
581581

582+
.config-card-content.open > div {
583+
overflow: visible;
584+
}
585+
582586
/* Toggle switches */
583587
.toggle-group {
584588
display: flex;
@@ -743,6 +747,15 @@ body {
743747
user-select: none;
744748
}
745749

750+
/* Expand touch target for mobile devices */
751+
@media (pointer: coarse) {
752+
.tooltip-trigger::before {
753+
content: '';
754+
position: absolute;
755+
inset: -12px;
756+
}
757+
}
758+
746759
.tooltip-content {
747760
position: absolute;
748761
bottom: 140%;

0 commit comments

Comments
 (0)