Fix file grid background color

Signed-off-by: trivernis <trivernis@protonmail.com>
pull/14/head
trivernis 3 years ago
parent e5a071cfad
commit 0bf89d9cee
Signed by: Trivernis
GPG Key ID: DFFFCC2C7A02DB45

@ -2,7 +2,7 @@
(keyDownEvent)="handleKeydownEvent($event)" (keyDownEvent)="handleKeydownEvent($event)"
(keyUpEvent)="handleKeyupEvent($event)" (keyUpEvent)="handleKeyupEvent($event)"
appInputReceiver appInputReceiver
class="file-gallery-inner"> class="file-grid-inner">
<cdk-virtual-scroll-viewport #virtualScrollGrid class="file-scroll" itemSize="260" maxBufferPx="2000" <cdk-virtual-scroll-viewport #virtualScrollGrid class="file-scroll" itemSize="260" maxBufferPx="2000"
minBufferPx="500"> minBufferPx="500">
<div *cdkVirtualFor="let rowEntry of partitionedGridEntries; trackBy: trackByFileRowId"> <div *cdkVirtualFor="let rowEntry of partitionedGridEntries; trackBy: trackByFileRowId">

@ -1,3 +1,5 @@
@import "src/colors";
app-file-card { app-file-card {
height: 250px; height: 250px;
width: 100%; width: 100%;
@ -9,11 +11,12 @@ app-file-card {
width: 100%; width: 100%;
} }
.file-gallery-inner { .file-grid-inner {
width: 100%; width: 100%;
height: 100%; height: 100%;
display: block; display: block;
overflow: hidden; overflow: hidden;
background: $background-darker-05;
} }
.file-row { .file-row {

Loading…
Cancel
Save