forked from OpenNeo/impress
Make the Alt Styles list less tall on large screens
On the small-screen layout, the popover goes down and covers the item list, which isn't a big deal in context; so I want it to be basically as tall as it can be without being unwieldy, to give more info. But on the large-screen layout, it doesn't take long at all for the popover to start intersecting the pet preview, because it *has* to go up and cover the pet preview. So, I'm much more reserved about how much vertical space I'm willing to give it! (I also considered sending the popover off to the *right* of the button, to cover the item list, but it felt *way* too weird imo! Especially in the expressions case.)
This commit is contained in:
parent
c93895b2f7
commit
a4ca9ae522
1 changed files with 1 additions and 1 deletions
|
@ -679,7 +679,7 @@ function StyleSelect({
|
|||
as="form"
|
||||
direction="column"
|
||||
gap="2"
|
||||
maxHeight="40vh"
|
||||
maxHeight={{ base: "30vh", md: "10rem" }}
|
||||
padding="4px"
|
||||
overflow="auto"
|
||||
>
|
||||
|
|
Loading…
Reference in a new issue