Lidarr/frontend/src/AlbumStudio/AlbumStudioRow.css
2020-10-13 23:19:29 -04:00

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