From 7c49fcd788692a898e985cb156dd9fd910c05790 Mon Sep 17 00:00:00 2001 From: sowgro Date: Fri, 4 Apr 2025 23:14:14 -0400 Subject: Add new authentication to dashboard, cleanup --- ufund-ui/src/app/components/dashboard/dashboard.component.css | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'ufund-ui/src/app/components/dashboard/dashboard.component.css') diff --git a/ufund-ui/src/app/components/dashboard/dashboard.component.css b/ufund-ui/src/app/components/dashboard/dashboard.component.css index 185fdc2..742a151 100644 --- a/ufund-ui/src/app/components/dashboard/dashboard.component.css +++ b/ufund-ui/src/app/components/dashboard/dashboard.component.css @@ -1,7 +1,11 @@ :host { display: flex; - flex-direction: column; + justify-content: center; +} + +#box { + display: flex; width: 800px; - align-self: center; - gap: 20px + flex-direction: column; + gap: 10px; } -- cgit v1.2.3 From 1d4073c04aac11226fa3394ba84a745ed427d1cd Mon Sep 17 00:00:00 2001 From: Gunther6070 Date: Sat, 5 Apr 2025 23:26:11 -0400 Subject: Updated dashboard styling --- .../components/dashboard/dashboard.component.css | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) (limited to 'ufund-ui/src/app/components/dashboard/dashboard.component.css') diff --git a/ufund-ui/src/app/components/dashboard/dashboard.component.css b/ufund-ui/src/app/components/dashboard/dashboard.component.css index 742a151..303b890 100644 --- a/ufund-ui/src/app/components/dashboard/dashboard.component.css +++ b/ufund-ui/src/app/components/dashboard/dashboard.component.css @@ -9,3 +9,31 @@ flex-direction: column; gap: 10px; } + +#stats { + display: flex; + flex-direction: row; + gap: 10px; +} + +.card { + background-color: #2e2e2e; + width: 400px; + height: 130px; + border-radius: 5px; + padding: 20px; + display: flex; + flex-direction: column; + +} + +.listCard { + background-color: #2e2e2e; + border-radius: 5px; + padding: 10px; + +} + +.content { + align-self: end; +} -- cgit v1.2.3 From 04cb51b2e7891785c956c5faa73fb88cc04e82e0 Mon Sep 17 00:00:00 2001 From: sowgro Date: Sun, 6 Apr 2025 13:40:20 -0400 Subject: Improve spacing in dashboard --- ufund-ui/src/app/components/dashboard/dashboard.component.css | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'ufund-ui/src/app/components/dashboard/dashboard.component.css') diff --git a/ufund-ui/src/app/components/dashboard/dashboard.component.css b/ufund-ui/src/app/components/dashboard/dashboard.component.css index 303b890..54f362b 100644 --- a/ufund-ui/src/app/components/dashboard/dashboard.component.css +++ b/ufund-ui/src/app/components/dashboard/dashboard.component.css @@ -21,17 +21,23 @@ width: 400px; height: 130px; border-radius: 5px; - padding: 20px; + padding: 10px; display: flex; flex-direction: column; + justify-content: space-between; + h1 { + padding: 0 10px; + } } .listCard { + display: flex; + flex-direction: column; background-color: #2e2e2e; border-radius: 5px; padding: 10px; - + gap: 10px; } .content { -- cgit v1.2.3