From 54a27fb52551069fa6d40c6f5941c5d49c0f0506 Mon Sep 17 00:00:00 2001 From: rohan09-raj Date: Thu, 25 Aug 2022 11:52:33 +0530 Subject: admin UI improvement and back button added --- .../src/components/BackButton/BackButton.module.css | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 admin/src/components/BackButton/BackButton.module.css (limited to 'admin/src/components/BackButton/BackButton.module.css') 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; +} -- cgit