From 498fa6d9476b8049925922c0fc51ec2a64d33245 Mon Sep 17 00:00:00 2001 From: Manas Date: Thu, 17 Oct 2024 01:21:44 +0530 Subject: [PATCH] feat: added made with text to mobile view --- .../MobileLanding/ContactUs/ContactUs.tsx | 3 ++ .../ContactUs/contactUs.module.scss | 34 +++++++++++++++++-- 2 files changed, 35 insertions(+), 2 deletions(-) diff --git a/components/MobileLanding/ContactUs/ContactUs.tsx b/components/MobileLanding/ContactUs/ContactUs.tsx index 24fadcbc..4fb50273 100644 --- a/components/MobileLanding/ContactUs/ContactUs.tsx +++ b/components/MobileLanding/ContactUs/ContactUs.tsx @@ -95,6 +95,9 @@ export default function ContactUsMobile() { email="mailto:gensec@pilani.bits-pilani.ac.in" /> +
+ Made with ❤️ by DVM +
); } diff --git a/components/MobileLanding/ContactUs/contactUs.module.scss b/components/MobileLanding/ContactUs/contactUs.module.scss index 0af6af66..d93dee03 100644 --- a/components/MobileLanding/ContactUs/contactUs.module.scss +++ b/components/MobileLanding/ContactUs/contactUs.module.scss @@ -3,6 +3,36 @@ padding: 15px; grid-template-columns: repeat(2, 1fr); gap: 8px; - margin-top: 50px; + margin-top:20px; align-items: center; -} \ No newline at end of file +} + +.madeWith a{ + pointer-events: all; + cursor: pointer; + text-decoration: none; + display: flex; + justify-content: center; + align-items: center; + margin-top: 20px; + margin-bottom: 30px; + font-family: "Source Serif Pro", sans-serif; + font-size: 20px; + font-style: normal; + font-weight: 600; + letter-spacing: 0.04em; + line-height: normal; + background: linear-gradient( + 112.17deg, + #d4a753 25.95%, + #d2a146 44.71%, + #d4a753 72.61% + ); + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; + + span { + padding: 0 7px; + height: 25px; + } +}