Could the tables with the className of
tables_staking
be updated to allow the
data-header="Value"
table cell to be responsive. This will allow the table to fully show asset values and not get truncated. Also no real downside in doing this.
The way the table is styled each td is being restricted to a max-width as seen in the code snippet below. The table itself could probably be simplified from a styling standpoint but currently the set max width will cause truncation and cut off token values in your pair. You can also do responsive widths while keeping truncation.
.table .cell_SecondaryText, table .cell_SecondaryText {
font-size: 14px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
max-width: 150px;
}
This data is seen on the farm and pool routes within
.tables_staking