CSS Issue: Bottom Button Container Not Fully Visible #5664
Replies: 2 comments
-
Have you tried reducing the number of widgets to debug this? For example, let's start with removing everything before the last block of inputs. This seems to work as expected. Now try adding back the DataTable inside the container. This looks like this breaks! What happens if you put the table outside the container? It looks like you want to show/hide the last block of inputs. Wouldn't it make more sense to have this in a separate container? This should also help make your app layout simpler to reason about - only put the widgets you need in a grid layout in these containers. |
Beta Was this translation helpful? Give feedback.
-
It will always be helpful if your code is runnable without modifications. i.e. please don't ask folk to fix the code before running it. If you want to ensure your content fits the container, you should set height to "auto". If you set it to 100%, then it will be 100% of it's container, which may be too small. |
Beta Was this translation helpful? Give feedback.
-
I'm almost done with a side project for a group of friends(actually this the last part), but I'm facing a CSS issue. The problem is that the
button--container
at the bottom of the screen isn't fully visible—only the top part is showing. Even after adding extra padding to the container, it still only displays half of it. What am I doing wrong?Extra padding:

Beta Was this translation helpful? Give feedback.
All reactions