mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Add more card columns on very large screens
This commit is contained in:
parent
677cfb7a1e
commit
fbca412d30
@ -116,6 +116,6 @@
|
|||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
|
||||||
<div class="m-n2 row row row-cols-2 row-cols-md-3 row-cols-lg-4 row-cols-xl-5" *ngIf="displayMode == 'smallCards'">
|
<div class="m-n2 row row-cols-paperless-cards" *ngIf="displayMode == 'smallCards'">
|
||||||
<app-document-card-small [document]="d" *ngFor="let d of list.documents" (clickTag)="clickTag($event)" (clickCorrespondent)="clickCorrespondent($event)"></app-document-card-small>
|
<app-document-card-small [document]="d" *ngFor="let d of list.documents" (clickTag)="clickTag($event)" (clickCorrespondent)="clickCorrespondent($event)"></app-document-card-small>
|
||||||
</div>
|
</div>
|
||||||
|
@ -0,0 +1,21 @@
|
|||||||
|
$paperless-card-breakpoints: (
|
||||||
|
0: 2, // xs
|
||||||
|
768px: 3, //md
|
||||||
|
992px: 4, //lg
|
||||||
|
1200px: 5, //xl
|
||||||
|
1400px: 6, // xxl
|
||||||
|
1600px: 7,
|
||||||
|
1800px: 8,
|
||||||
|
2000px: 9
|
||||||
|
);
|
||||||
|
|
||||||
|
.row-cols-paperless-cards {
|
||||||
|
@each $width, $n_cols in $paperless-card-breakpoints {
|
||||||
|
@media(min-width: $width) {
|
||||||
|
> * {
|
||||||
|
flex: 0 0 auto;
|
||||||
|
width: 100% / $n_cols;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user