mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
41 lines
697 B
CSS
41 lines
697 B
CSS
.protocol {
|
|
composes: headerCell from '~Components/Table/VirtualTableHeaderCell.css';
|
|
|
|
flex: 0 0 90px;
|
|
}
|
|
|
|
.title {
|
|
composes: headerCell from '~Components/Table/VirtualTableHeaderCell.css';
|
|
|
|
flex: 4 0 110px;
|
|
}
|
|
|
|
.indexer,
|
|
.category {
|
|
composes: headerCell from '~Components/Table/VirtualTableHeaderCell.css';
|
|
|
|
flex: 0 0 130px;
|
|
}
|
|
|
|
.age,
|
|
.size,
|
|
.files,
|
|
.grabs,
|
|
.peers {
|
|
composes: headerCell from '~Components/Table/VirtualTableHeaderCell.css';
|
|
|
|
flex: 0 0 75px;
|
|
}
|
|
|
|
.indexerFlags {
|
|
composes: headerCell from '~Components/Table/VirtualTableHeaderCell.css';
|
|
|
|
flex: 0 0 50px;
|
|
}
|
|
|
|
.actions {
|
|
composes: headerCell from '~Components/Table/VirtualTableHeaderCell.css';
|
|
|
|
flex: 0 1 90px;
|
|
}
|