diff --git a/src/components/Intro/Intro.css b/src/components/Intro/Intro.css index e29349c..2675311 100644 --- a/src/components/Intro/Intro.css +++ b/src/components/Intro/Intro.css @@ -1,13 +1,13 @@ .intro-container { - @apply flex flex-row-reverse flex-grow-0 justify-evenly items-center gap-20 m-16 mt-40 mb-64; + @apply flex flex-col md:flex-col lg:flex-row-reverse justify-evenly items-center gap-20 mx-10 mb-40 mt-24 md:mx-20 md:my-48 lg:mx-32 lg:mt-32 lg:mb-72; } .desc { - @apply text-4xl; + @apply text-xl md:text-2xl lg:text-3xl; } .desc h2 { - @apply text-3xl; + @apply text-xl md:text-2xl lg:text-3xl; } .my-Info img { diff --git a/src/components/Intro/Intro.jsx b/src/components/Intro/Intro.jsx index e96a1b8..85106b1 100644 --- a/src/components/Intro/Intro.jsx +++ b/src/components/Intro/Intro.jsx @@ -17,16 +17,21 @@ const Intro = () => { return (
- + pfp
- I`M {" "} - + I`M
+

-

Frontend Developer

+

+ Frontend Developer +

I fondly anticipate working in a challenging yet rewarding
organisation to attain its vision for personal growth. diff --git a/src/components/Navbar/Navbar.css b/src/components/Navbar/Navbar.css index 74b3497..bf884ad 100644 --- a/src/components/Navbar/Navbar.css +++ b/src/components/Navbar/Navbar.css @@ -1,5 +1,5 @@ .navbar-container { - @apply flex justify-between items-center; + @apply flex justify-between items-center m-10 md:m-10 lg:m-10; } .mylogo img { diff --git a/src/components/Projects/Projects.css b/src/components/Projects/Projects.css index ab898b8..69501bd 100644 --- a/src/components/Projects/Projects.css +++ b/src/components/Projects/Projects.css @@ -1,7 +1,7 @@ .projects-container { - @apply mt-48 mb-24 flex flex-col gap-32 items-center justify-center; + @apply mt-48 mb-24 flex flex-col gap-20 md:gap-32 items-center justify-center; } li { - @apply text-2xl ml-8; + @apply text-2xl md:text-2xl ml-8; } diff --git a/src/components/Projects/Projects.jsx b/src/components/Projects/Projects.jsx index bc9ff97..552916c 100644 --- a/src/components/Projects/Projects.jsx +++ b/src/components/Projects/Projects.jsx @@ -6,7 +6,7 @@ const Projects = () => { return (

Projects

-
+

Droidx-UI Website @@ -23,15 +23,17 @@ const Projects = () => {
  • HTML & CSS
  • JavaScript
  • - +

    diff --git a/src/components/ui/flip-words.tsx b/src/components/ui/flip-words.tsx index 2c95dd1..ed70af1 100644 --- a/src/components/ui/flip-words.tsx +++ b/src/components/ui/flip-words.tsx @@ -56,11 +56,10 @@ export const FlipWords = ({ y: -40, x: 40, filter: "blur(8px)", - scale: 2, position: "absolute", }} className={cn( - "z-10 inline-block relative text-left #12110c text-amber-200 px-2", + "z-10 inline-block absolute text-left #12110c text-amber-200", className )} key={currentWord} diff --git a/src/components/ui/infinite-moving-cards.tsx b/src/components/ui/infinite-moving-cards.tsx index 10347bb..8f93dc7 100644 --- a/src/components/ui/infinite-moving-cards.tsx +++ b/src/components/ui/infinite-moving-cards.tsx @@ -72,7 +72,7 @@ export const InfiniteMovingCards = ({
    diff --git a/src/index.css b/src/index.css index 9b4870f..8cffc47 100644 --- a/src/index.css +++ b/src/index.css @@ -10,7 +10,7 @@ body { color: white; background-color: #12110c; - margin: 60px; + @apply md:m-10 lg:mt-16; } *::-webkit-scrollbar {