Hi guys,
Please could someone with scrolling in my CSS?
I have a screen with blocks (Block one - Sections: horizontal list / Block two-tasks - vertical list) This is functional, but I am having a problem with scroll. I need that vertical scroll olny show in specific vertical section thats taken overflow. (image attached)
If I have sections columns in overflow, I need horizontal scrool too.
*** Attached I'm sendding the excatly design that I need to make on Outsystems.
Application link to debug css if someone needs
https://personal-h6lmzlzo.outsystemscloud.com/Zlate/TaskBoard?ProjectId=3
Thank you so much!!!
Hello @Elaine Guimaraes ,
You can give CSS styling overflow-y: scroll; to the vertical list and overflow-x: scroll; to horizontal list along with some height. This will give you the desired output as shown in the picture you provided.
Hope this helped you.
Regards,
Aman Singh Rajput
Hi Elaine,
As per your implementation, you need to make changes in the below mentioned CSS style class definitions:
CSS Snippet:
.list.list-group { display: flex; flex-direction: row; position: relative; overflow-x: auto; } .section .section__task { display: flex; flex-direction: column; overflow-y: auto; height: 70vh; }
Kind regards,
Benjith Sam
Thanks Amanda!!
Thank you Benjith!!