summaryrefslogtreecommitdiff
path: root/admin/src/components/BackButton/BackButton.module.css
diff options
context:
space:
mode:
authorrohan09-raj <[email protected]>2022-08-25 11:52:33 +0530
committerrohan09-raj <[email protected]>2022-08-25 11:55:12 +0530
commit54a27fb52551069fa6d40c6f5941c5d49c0f0506 (patch)
tree8aff7da60822a847ea081c981da904880d6fb807 /admin/src/components/BackButton/BackButton.module.css
parent772fc663fd31bc247dcc7da31090234b5b89f155 (diff)
admin UI improvement and back button added
Diffstat (limited to 'admin/src/components/BackButton/BackButton.module.css')
-rw-r--r--admin/src/components/BackButton/BackButton.module.css20
1 files changed, 20 insertions, 0 deletions
diff --git a/admin/src/components/BackButton/BackButton.module.css b/admin/src/components/BackButton/BackButton.module.css
new file mode 100644
index 0000000..cc9b51c
--- /dev/null
+++ b/admin/src/components/BackButton/BackButton.module.css
@@ -0,0 +1,20 @@
+.submit {
+ position: absolute;
+ top: 100px;
+ left: 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;
+}