Account created on 9 November 2020, about 4 years ago
#

Recent comments

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%;
}
}

Same experience with me. This is on a fresh Drupal 10 installation.

Production build 0.71.5 2024