diff options
Diffstat (limited to 'ufund-ui/src/app/components/dashboard/dashboard.component.css')
-rw-r--r-- | ufund-ui/src/app/components/dashboard/dashboard.component.css | 44 |
1 files changed, 41 insertions, 3 deletions
diff --git a/ufund-ui/src/app/components/dashboard/dashboard.component.css b/ufund-ui/src/app/components/dashboard/dashboard.component.css index 185fdc2..54f362b 100644 --- a/ufund-ui/src/app/components/dashboard/dashboard.component.css +++ b/ufund-ui/src/app/components/dashboard/dashboard.component.css @@ -1,7 +1,45 @@ :host { display: flex; - flex-direction: column; + justify-content: center; +} + +#box { + display: flex; width: 800px; - align-self: center; - gap: 20px + 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: 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 { + align-self: end; } |