diff options
author | Gunther6070 <haydenhartman10@yahoo.com> | 2025-03-25 18:07:45 -0400 |
---|---|---|
committer | Gunther6070 <haydenhartman10@yahoo.com> | 2025-03-25 18:07:45 -0400 |
commit | b0369f8b5e50eaec22c9178748f57dde6912d383 (patch) | |
tree | 35321024e74b71f11bda4ecc30de44843f28a838 /ufund-ui/src/app/components/signup/signup.component.css | |
parent | 5f03e80712f7a18370b5118fde5327bde1b6fbbf (diff) | |
download | JellySolutions-b0369f8b5e50eaec22c9178748f57dde6912d383.tar.gz JellySolutions-b0369f8b5e50eaec22c9178748f57dde6912d383.tar.bz2 JellySolutions-b0369f8b5e50eaec22c9178748f57dde6912d383.zip |
Created signup component and implemented some functionality. Did not finish implementing color bar and error messages.
Diffstat (limited to 'ufund-ui/src/app/components/signup/signup.component.css')
-rw-r--r-- | ufund-ui/src/app/components/signup/signup.component.css | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/ufund-ui/src/app/components/signup/signup.component.css b/ufund-ui/src/app/components/signup/signup.component.css new file mode 100644 index 0000000..2a10016 --- /dev/null +++ b/ufund-ui/src/app/components/signup/signup.component.css @@ -0,0 +1,16 @@ +: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; +} |