diff options
author | rohan09-raj <[email protected]> | 2022-07-19 23:00:40 +0530 |
---|---|---|
committer | rohan09-raj <[email protected]> | 2022-07-19 23:00:40 +0530 |
commit | 7e69bd83d62859a80a9baf44beb005a7980525cf (patch) | |
tree | 6cb42f09a584ef478eeb3a78a6f402375068d527 /src/components/SubmitButton/SubmitButton.module.css | |
parent | a574ddfda9d7ce7c5266d1f99acf351546f8857e (diff) |
Submit button add and radio select addd
Diffstat (limited to 'src/components/SubmitButton/SubmitButton.module.css')
-rw-r--r-- | src/components/SubmitButton/SubmitButton.module.css | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/components/SubmitButton/SubmitButton.module.css b/src/components/SubmitButton/SubmitButton.module.css new file mode 100644 index 0000000..bb1b015 --- /dev/null +++ b/src/components/SubmitButton/SubmitButton.module.css @@ -0,0 +1,20 @@ +.submit { + position: absolute; + bottom: 100px; + right: 150px; + background: transparent; + border: none; + border-radius: 50%; + transition: 0.2s all; + cursor: pointer; +} + +.submit:active { + transform: scale(0.98); + box-shadow: 3px 2px 22px 1px var(--color-shadow); +} + +.submit__image { + height: 75px; + width: 75px; +} |