style: prevents wrapping of indexer column

fixes #9551: prevents wrapping in the history panel and in interactive search if the modal is greater than 1600px, the same value as .extraExtraLarge breakpoint defined in Modal.css
pull/9817/head
Rohan Chandi 3 months ago
parent e70c61e24e
commit f3454ba7ee
No known key found for this signature in database

@ -8,6 +8,7 @@
composes: cell from '~Components/Table/Cells/TableRowCell.css';
width: 80px;
white-space: nowrap;
}
.customFormatScore {

@ -17,6 +17,12 @@
width: 85px;
}
@media only screen and (min-width: calc($breakpointExtraLarge + 150px)) {
.indexer {
white-space: nowrap;
}
}
.quality,
.languages {
composes: cell from '~Components/Table/Cells/TableRowCell.css';

Loading…
Cancel
Save