mirror of
https://github.com/isledecomp/isle.pizza.git
synced 2026-02-28 05:47:39 +00:00
- 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>
This commit is contained in:
parent
5ce1b1ed69
commit
b5389b2685
13
src/app.css
13
src/app.css
@ -579,6 +579,10 @@ body {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.config-card-content.open > div {
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
/* Toggle switches */
|
||||
.toggle-group {
|
||||
display: flex;
|
||||
@ -743,6 +747,15 @@ body {
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
/* Expand touch target for mobile devices */
|
||||
@media (pointer: coarse) {
|
||||
.tooltip-trigger::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
inset: -12px;
|
||||
}
|
||||
}
|
||||
|
||||
.tooltip-content {
|
||||
position: absolute;
|
||||
bottom: 140%;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user