From 9657f204bdcbe78f53f157bed4a5db221cf636f5 Mon Sep 17 00:00:00 2001 From: Kenneth Jannette Date: Tue, 20 Feb 2024 12:45:17 -0600 Subject: [PATCH] more --- src/Components/Document/DocumentListPage.js | 54 ++++++++++++--------- src/styles/doclist-page.scss | 18 ++++++- 2 files changed, 48 insertions(+), 24 deletions(-) diff --git a/src/Components/Document/DocumentListPage.js b/src/Components/Document/DocumentListPage.js index bd2ed17..efd46ba 100644 --- a/src/Components/Document/DocumentListPage.js +++ b/src/Components/Document/DocumentListPage.js @@ -176,7 +176,7 @@ const DocumentListPage = ({ perPage }) => { if (!group) { return null; } - console.log("allDocs", allDocs); + const DesktopContent = () => { return ( <> @@ -186,21 +186,29 @@ const DocumentListPage = ({ perPage }) => { {allDocs === null ?
Loading...
: null} {allDocs !== null ? ( -
-
-
- {allDocs.length > 0 ? ( -
- +
+ {allDocs.length > 0 ? ( +
+
+

Min

+ + + +

Max

- ) : ( - <> - )} -
+
+
+ +
+
+
+ ) : ( + <> + )}
{allDocs.length > 0 ? ( allDocs @@ -209,17 +217,17 @@ const DocumentListPage = ({ perPage }) => { )) ) : ( diff --git a/src/styles/doclist-page.scss b/src/styles/doclist-page.scss index 5c61322..0382a39 100644 --- a/src/styles/doclist-page.scss +++ b/src/styles/doclist-page.scss @@ -52,6 +52,22 @@ padding: 3px 0px; } +.document-list-upper-wrapper { + display: flex; + flex-direction: row; + width: 100%; + background-color: yellow; +} + +.list-upper-left { + background-color: blue; + width: 95%; +} + +.list-upper-right { + background-color: red; +} + .document-list-lower-wrapper { display: flex; flex-direction: column; @@ -66,6 +82,6 @@ font-weight: 500; } -.dropdown-container { +.content-container { padding: 0rem 1rem; }