diff --git a/src/assets/team/Hari.jpeg b/src/assets/team/Hari.jpeg index adf55e0..bc550d1 100644 Binary files a/src/assets/team/Hari.jpeg and b/src/assets/team/Hari.jpeg differ diff --git a/src/pages/Dashboard/Dashboard.css b/src/pages/Dashboard/Dashboard.css index 3cca1d4..6264fe9 100644 --- a/src/pages/Dashboard/Dashboard.css +++ b/src/pages/Dashboard/Dashboard.css @@ -178,16 +178,6 @@ background: linear-gradient(45deg, rgba(16,115,149,0.8608485630580357) 95%, rgba @media only screen and (max-width: 1300px) { } -@media (min-device-width: 20px) and (max-device-width: 500px){ - .profile__main{ - flex-direction: column; - gap: 2rem; - } -} -@media only screen and (max-width: 1200px) { - -} - @media only screen and (max-width: 1100px) { } diff --git a/src/pages/Dashboard/Dashboard.js b/src/pages/Dashboard/Dashboard.js index c3aa2f4..a920262 100644 --- a/src/pages/Dashboard/Dashboard.js +++ b/src/pages/Dashboard/Dashboard.js @@ -8,7 +8,7 @@ import baseUrl from '../../utils/Urls' import { useNavigate } from 'react-router-dom' import Lottie from 'react-lottie' import train_anim from '../../animations/88977-metro-rail.json' -import { AiFillEdit } from 'react-icons/ai' +import { FaEdit } from 'react-icons/fa' import Editprofileform from '../../components/Editprofileform/Editprofileform' import {Modal,Button} from 'react-bootstrap' const Dashboard = () => { @@ -72,7 +72,7 @@ const Dashboard = () => {
Phone no:

{phno}

Username:

{curr_username}

Email:

{currEmail}

- { setShow(true) }}/> + { setShow(true) }}/> diff --git a/src/pages/Teams/TeamCard.js b/src/pages/Teams/TeamCard.js index 15f2401..b57543d 100644 --- a/src/pages/Teams/TeamCard.js +++ b/src/pages/Teams/TeamCard.js @@ -1,20 +1,17 @@ -import React from 'react' +import React, { useEffect } from 'react' import './Teams.css' - +import Aos from 'aos' const TeamCard = ({id, name, image}) => { - if(id%2===0){ - return( -
- -

{name}

-
- ) - } + useEffect(()=>{ + Aos.init({duration:1100}) + },[]) return ( -
- -

{name}

+
+
team_member
+
+

{name}

+
) } diff --git a/src/pages/Teams/Teams.css b/src/pages/Teams/Teams.css index c5b140f..74e8e27 100644 --- a/src/pages/Teams/Teams.css +++ b/src/pages/Teams/Teams.css @@ -20,4 +20,62 @@ border-radius: 3rem; width: 10rem; height: 10rem; -} \ No newline at end of file +} + + + +/* new */ + +.card { + margin: 30px auto; + width: 300px; + height: 300px; + border-radius: 40px; + box-shadow: 5px 5px 30px 7px rgba(0,0,0,0.25), -5px -5px 30px 7px rgba(0,0,0,0.22); + cursor: pointer; + transition: 0.4s; + } + + .card .card_image { + width: inherit; + height: inherit; + border-radius: 40px; + } + + .card .card_image img { + width: inherit; + height: inherit; + border-radius: 40px; + object-fit: cover; + } + + .card .card_title { + text-align: center; + /* border-radius: 0px 0px 40px 40px; */ + border-radius: 10px ; + font-family: sans-serif; + font-weight: bold; + font-size: 30px; + margin-top: -80px; + height: 40px; + opacity: 100px; + + } + + .card:hover { + transform: scale(0.9, 0.9); + box-shadow: 5px 5px 30px 15px rgba(0,0,0,0.25), + -5px -5px 30px 15px rgba(0,0,0,0.22); + } + + .title-white { + color: #ffff; + display: flex; + background: linear-gradient(180deg,rgba(20, 131, 222, 0.97),#21b8cb),#efffec; + padding: 2px 3px 2px 3px; + width: fit-content; + justify-content: center; + height: fit-content; + font-family: 'Robotto'; + } + \ No newline at end of file