fix: constrain goal selector width on mobile in tasks page
On small screens (<=480px), the goal selector dropdown could overflow due to long option text. Match notes page behavior: set select to width:100% with max-width:100%.
This commit is contained in:
parent
bc590eb40a
commit
2345724535
@ -235,8 +235,15 @@
|
||||
padding: 30vh 1rem;
|
||||
}
|
||||
|
||||
.goal-selector-container {
|
||||
min-width: 0;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.goal-selector-container select {
|
||||
min-width: 140px;
|
||||
min-width: 0;
|
||||
width: 100%;
|
||||
max-width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user