I'm having this same issue when trying to add commerce product variation with field validation module and Drupal 11.
The code below was added to make every views table to be mobile responsive. I suggest that it should be added to the theme's css.
/* Make the table container scrollable */
.views-table {
display: block;
overflow-x: auto;
white-space: nowrap;
}
/* Ensure table content wraps properly */
.views-table td,
.views-table th {
word-wrap: break-word;
white-space: normal;
}
/* Add responsiveness for smaller screens */
@media (max-width: 768px) {
.views-table th, .views-table td {
padding: 8px;
font-size: 14px;
}
.views-table {
width: 100%;
}
}
Thanks developer. It works fine now.
ricmayak1 → created an issue.
ricmayak1 → created an issue.
Same experience with me. This is on a fresh Drupal 10 installation.