From d85eeb6918d521197c2e6ad1e3da2dec8ce95398 Mon Sep 17 00:00:00 2001 From: sowgro Date: Fri, 4 Apr 2025 17:22:10 -0400 Subject: Edit modal --- ufund-ui/src/app/app.component.css | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'ufund-ui/src/app/app.component.css') diff --git a/ufund-ui/src/app/app.component.css b/ufund-ui/src/app/app.component.css index f4ed668..ee6e2f7 100644 --- a/ufund-ui/src/app/app.component.css +++ b/ufund-ui/src/app/app.component.css @@ -4,6 +4,23 @@ height: 100%; } +#scroll { + overflow: auto; + min-height: 100%; +} + +.modal { + position: absolute; + background-color: #000000a8; + top: 0; + bottom: 0; + left: 0; + right: 0; + display: flex; + justify-content: center; + align-items: center; +} + #header { display: flex; flex-direction: row; -- cgit v1.2.3 From 49a82c8a8a7a3ea3cfd30572944510f3aa18663d Mon Sep 17 00:00:00 2001 From: sowgro Date: Fri, 4 Apr 2025 19:12:53 -0400 Subject: Fix home screen being too short --- ufund-ui/src/app/app.component.css | 2 ++ 1 file changed, 2 insertions(+) (limited to 'ufund-ui/src/app/app.component.css') diff --git a/ufund-ui/src/app/app.component.css b/ufund-ui/src/app/app.component.css index ee6e2f7..6cbd45b 100644 --- a/ufund-ui/src/app/app.component.css +++ b/ufund-ui/src/app/app.component.css @@ -7,6 +7,8 @@ #scroll { overflow: auto; min-height: 100%; + display: flex; + flex-direction: column; } .modal { -- cgit v1.2.3 From 47a4326827a4123792e3a1165843344c8a9c7b0d Mon Sep 17 00:00:00 2001 From: sowgro Date: Fri, 4 Apr 2025 19:15:33 -0400 Subject: Fix modal z-index --- ufund-ui/src/app/app.component.css | 1 + 1 file changed, 1 insertion(+) (limited to 'ufund-ui/src/app/app.component.css') diff --git a/ufund-ui/src/app/app.component.css b/ufund-ui/src/app/app.component.css index 6cbd45b..8b6b28a 100644 --- a/ufund-ui/src/app/app.component.css +++ b/ufund-ui/src/app/app.component.css @@ -21,6 +21,7 @@ display: flex; justify-content: center; align-items: center; + z-index: 3; } #header { -- cgit v1.2.3