diff options
author | sowgro <tpoke.ferrari@gmail.com> | 2025-03-15 18:34:58 -0400 |
---|---|---|
committer | sowgro <tpoke.ferrari@gmail.com> | 2025-03-15 18:34:58 -0400 |
commit | d97d4d430113088c4f52f53c040d8705c66b410e (patch) | |
tree | 7738f85333e1511d39b745c49b9ff70c4d8e3a27 /ufund-ui/src/app/components/login/login.component.css | |
parent | 51f0322db803ed3baf1f24f18a6e7a83dab58a3b (diff) | |
download | JellySolutions-d97d4d430113088c4f52f53c040d8705c66b410e.tar.gz JellySolutions-d97d4d430113088c4f52f53c040d8705c66b410e.tar.bz2 JellySolutions-d97d4d430113088c4f52f53c040d8705c66b410e.zip |
Add support for account creation
Diffstat (limited to '')
-rw-r--r-- | ufund-ui/src/app/components/login/login.component.css | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/ufund-ui/src/app/components/login/login.component.css b/ufund-ui/src/app/components/login/login.component.css index afd4bf1..435cc87 100644 --- a/ufund-ui/src/app/components/login/login.component.css +++ b/ufund-ui/src/app/components/login/login.component.css @@ -1,6 +1,16 @@ -:host { +:host, .border { display: flex; flex-direction: column; max-width: 300px; gap: 5px } + +.border { + border-style: solid; + border-width: 1px; + padding: 10px; + margin: 10px; + position: absolute; + background-color: white; + box-shadow: 0 0 10px 10px black; +} |