diff --git a/frontend/src/app/components/icons/ellipsis.jsx b/frontend/src/app/components/icons/ellipsis.jsx index cef5cb7..f30cf0b 100644 --- a/frontend/src/app/components/icons/ellipsis.jsx +++ b/frontend/src/app/components/icons/ellipsis.jsx @@ -1,17 +1,23 @@ import React from "react"; -const ellipsis = () => { +const ellipsis = ({ + width = "24", + height = "24", + color = "#858699", + style, +}) => { return ( ); diff --git a/frontend/src/app/components/icons/verticalEllipsis.jsx b/frontend/src/app/components/icons/verticalEllipsis.jsx deleted file mode 100644 index 448a8ee..0000000 --- a/frontend/src/app/components/icons/verticalEllipsis.jsx +++ /dev/null @@ -1,21 +0,0 @@ -import React from "react"; - -const verticalEllipsis = () => { - return ( - - - - ); -}; - -export default verticalEllipsis; diff --git a/frontend/src/app/components/navbar/navright/Profile.jsx b/frontend/src/app/components/navbar/navright/Profile.jsx index 2fecacd..fff1cda 100644 --- a/frontend/src/app/components/navbar/navright/Profile.jsx +++ b/frontend/src/app/components/navbar/navright/Profile.jsx @@ -2,7 +2,6 @@ import React, { useState } from "react"; import EllipsisIcon from "../../icons/ellipsis"; import ProfileDropdown from "./ProfileDropdown"; import styles from "./styles.module.css"; -import VerticalEllipsis from "../../icons/verticalEllipsis"; import useIsMobile from "@/app/hooks/useIsMobile"; const Profile = () => { const isMobile = useIsMobile(); @@ -43,7 +42,7 @@ const Profile = () => { {/* Mobile Ellipsis */} {isMobile && (
setOpen(!open)}> - +
)} diff --git a/frontend/src/app/components/navbar/navright/styles.module.css b/frontend/src/app/components/navbar/navright/styles.module.css index 06502bf..fb91566 100644 --- a/frontend/src/app/components/navbar/navright/styles.module.css +++ b/frontend/src/app/components/navbar/navright/styles.module.css @@ -150,6 +150,9 @@ font-weight: 400; line-height: normal; } +.rotated { + transform: rotate(90deg); +} /* Mobile */ @media (max-width: 768px) { @@ -176,6 +179,7 @@ gap: 10px; padding-right: 10px; } + .profileBadge { display: flex; padding: 12px 16px;