From 7e69bd83d62859a80a9baf44beb005a7980525cf Mon Sep 17 00:00:00 2001 From: rohan09-raj Date: Tue, 19 Jul 2022 23:00:40 +0530 Subject: Submit button add and radio select addd --- src/pages/Enrollment/FormOne/FormOne.module.css | 33 +++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 src/pages/Enrollment/FormOne/FormOne.module.css (limited to 'src/pages/Enrollment/FormOne/FormOne.module.css') diff --git a/src/pages/Enrollment/FormOne/FormOne.module.css b/src/pages/Enrollment/FormOne/FormOne.module.css new file mode 100644 index 0000000..6fbe371 --- /dev/null +++ b/src/pages/Enrollment/FormOne/FormOne.module.css @@ -0,0 +1,33 @@ +.formone { + display: flex; + flex-direction: column; + align-items: center; + font-family: 'Barlow'; + font-size: var(--font-medium-s); +} + +.formone__radio { + display: flex; + align-items: center; +} + +.formone__resident { + display: flex; + align-items: center; + margin: 15px; +} + +.formone__resident input[type='radio'] { + width: 1.5rem; + height: 1.5rem; +} + +.formone__fullname { + display: flex; + flex-direction: column; +} + +#fullName { + margin: 10px; + padding: 20px 10px; +} -- cgit