mirror of
https://github.com/Lidarr/Lidarr
synced 2025-12-31 12:43:38 +01:00
41 lines
663 B
CSS
41 lines
663 B
CSS
.cell {
|
|
composes: cell from '~Components/Table/Cells/VirtualTableRowCell.css';
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.selectCell {
|
|
composes: cell from '~Components/Table/Cells/TableRowCell.css';
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.status {
|
|
composes: cell from '~Components/Table/Cells/TableRowCell.css';
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 0;
|
|
min-width: 60px;
|
|
}
|
|
|
|
.title {
|
|
composes: cell from '~Components/Table/Cells/TableRowCell.css';
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
flex-shrink: 0;
|
|
min-width: 110px;
|
|
}
|
|
|
|
.albums {
|
|
composes: cell;
|
|
|
|
display: flex;
|
|
flex-grow: 4;
|
|
flex-wrap: wrap;
|
|
min-width: 400px;
|
|
}
|