-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Overflow scroll cuts off content #60
Comments
You need a component that encapsulate all your other objects. It will have
fixed width/height and scroll activated
Le ven. 2 août 2024 à 09:52, Michal Gubriansky ***@***.***> a
écrit :
… Got a pretty simple setup that's mostly just text and some bitmaps.
Without overflow it looks something like this:
image.png (view on web)
<https://github.com/user-attachments/assets/196772e7-5044-4a65-a571-bf90427d99da>
Adding limits to the flow elements that would make it scroll starts
behaving all sorts of wrong.
max-height: 800;overflow: scroll;
Just hides's the whole thing tho I can see in debug that the elements is
there.
image.png (view on web)
<https://github.com/user-attachments/assets/a9526687-e180-4962-b6ff-c0ea01ca327d>
Trying to mess around with it more reveals that all the elements are being
hidden by something. Adding more width to the element does show parts of
the element's content.
image.png (view on web)
<https://github.com/user-attachments/assets/d3dfe171-3b24-47ea-bae1-dd8e130ee40d>
It's like there is something on top of the whole element that's making the
content invisible.
—
Reply to this email directly, view it on GitHub
<#60>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAHZXQAMBDXATLQ4BZZ7UDDZPM3C7AVCNFSM6AAAAABL4A6Y4WVHI2DSMVQWIX3LMV43ASLTON2WKOZSGQ2DIMZSGE3DEOI>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
That's what I did tho. It looks like this:
the scroll class style looks like this: .scroll {
layout: vertical;
content-align: middle;
height: 800;
width: 700;
overflow: scroll;
} |
I mean you need a flow for the container of all data, then an outer flow that will perform the scroll and limit the size. |
No success I tried something like this (pseudo code cuz there is no style attribute):
wondering if it's cuz well there are more flows on top of this cuz this essentially it is just a section of one big flow that's using full screen then there is a flow that acts as a "window" in the middle of it and then that has this thing in it that I want to scroll. |
Got a pretty simple setup that's mostly just text and some bitmaps. Without overflow it looks something like this:
Adding limits to the flow elements that would make it scroll starts behaving all sorts of wrong.
Just hides's the whole thing tho I can see in debug that the elements is there.
Trying to mess around with it more reveals that all the elements are being hidden by something. Adding more width to the element does show parts of the element's content.
It's like there is something on top of the whole element that's making the content invisible.
The text was updated successfully, but these errors were encountered: