0

Please or Register to create posts and topics.

Use Quickapp for mobile devices

Hi,

If I opens the user management in mobile devices, then the table becomes narrower. How can I change the width of the columns, but a horizontal scroll is possible?

 

Regards Ingo

Hello,

I assume you're using QuickApp-PRO which uses angular material for its UI.
You can use standard css to control the width of the column.

E.g. put the below code into user-list.component.scss

.mat-table {
  overflow: auto;
}

.mat-header-cell, .mat-cell {
  min-width: 150px;
}

Regards

Ingo has reacted to this post.
Ingo