diff --git a/src-ui/src/app/components/document-list/document-list.component.html b/src-ui/src/app/components/document-list/document-list.component.html
index 45b6fad37..8b91949a8 100644
--- a/src-ui/src/app/components/document-list/document-list.component.html
+++ b/src-ui/src/app/components/document-list/document-list.component.html
@@ -75,7 +75,7 @@
-
-
+
-
+
-
+
diff --git a/src-ui/src/app/components/document-list/document-list.component.scss b/src-ui/src/app/components/document-list/document-list.component.scss
index 28f765e29..ab67d9572 100644
--- a/src-ui/src/app/components/document-list/document-list.component.scss
+++ b/src-ui/src/app/components/document-list/document-list.component.scss
@@ -34,3 +34,12 @@ $paperless-card-breakpoints: (
right: 0 !important;
left: auto !important;
}
+
+.sticky-top {
+ z-index: 1000; // below main navbar
+ top: calc(7rem - 2px); // height of navbar (mobile)
+
+ @media (min-width: 768px) {
+ top: 3.5rem; // height of navbar
+ }
+}
diff --git a/src-ui/src/theme.scss b/src-ui/src/theme.scss
index df2aea003..113968a9f 100644
--- a/src-ui/src/theme.scss
+++ b/src-ui/src/theme.scss
@@ -4,4 +4,8 @@ $primaryFaded: #d1ddd2;
$theme-colors: (
"primary": $primary
-);
\ No newline at end of file
+);
+
+.bg-body {
+ background-color: #fff;
+}
diff --git a/src-ui/src/theme_dark.scss b/src-ui/src/theme_dark.scss
index 996f9da3d..25abac773 100644
--- a/src-ui/src/theme_dark.scss
+++ b/src-ui/src/theme_dark.scss
@@ -37,6 +37,10 @@ $border-color-dark-mode: #47494f;
}
}
+ .bg-body {
+ background-color: $bg-dark-mode !important;
+ }
+
.text-light {
color: $text-color-dark-mode !important;
}