diff options
author | sowgro <tpoke.ferrari@gmail.com> | 2025-04-04 19:15:33 -0400 |
---|---|---|
committer | sowgro <tpoke.ferrari@gmail.com> | 2025-04-04 19:15:33 -0400 |
commit | 47a4326827a4123792e3a1165843344c8a9c7b0d (patch) | |
tree | 244befc05d859e5bd5c4990306f7f93b774f7a5b /ufund-ui | |
parent | 49a82c8a8a7a3ea3cfd30572944510f3aa18663d (diff) | |
download | JellySolutions-47a4326827a4123792e3a1165843344c8a9c7b0d.tar.gz JellySolutions-47a4326827a4123792e3a1165843344c8a9c7b0d.tar.bz2 JellySolutions-47a4326827a4123792e3a1165843344c8a9c7b0d.zip |
Fix modal z-index
Diffstat (limited to 'ufund-ui')
-rw-r--r-- | ufund-ui/src/app/app.component.css | 1 | ||||
-rw-r--r-- | ufund-ui/src/app/components/toast/toast.component.css | 2 |
2 files changed, 2 insertions, 1 deletions
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 { diff --git a/ufund-ui/src/app/components/toast/toast.component.css b/ufund-ui/src/app/components/toast/toast.component.css index 7f68d0f..82e2ff3 100644 --- a/ufund-ui/src/app/components/toast/toast.component.css +++ b/ufund-ui/src/app/components/toast/toast.component.css @@ -14,7 +14,7 @@ animation: slideDown .5s ease-in-out; transition: transform .5s; align-self: center; - z-index: 3; + z-index: 4; position: absolute; top: 15px; display: flex; |