Skip to content

Commit

Permalink
added the hyperlink for password change in upyog-ui
Browse files Browse the repository at this point in the history
  • Loading branch information
sriranjan-s committed Jun 22, 2023
1 parent 53b92ec commit de8ee43
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const CitizenSubMenuSideBar = ({ item }) => {
const leftIcon = leftIconArray ? IconsObject[leftIconArray] : IconsObject.BillsIcon;
return (
<React.Fragment>
<div className="submenu-container">
<div className="submenu-container" style={{"position":"relative"}}>
<div onClick={item.links && showSubnav} className={`sidebar-link ${subnav === true ? "active" : ""}`}>
<div className="actions">
{leftIcon}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ const UserProfile = ({ stateCode, userType, cityDetails }) => {

return (
<div className="user-profile">
<section style={{ margin: userType === "citizen" ? "8px" : "24px" }}>
<section style={{ margin: userType === "citizen" ? "8px" : "24px",position:"relative" }}>
{userType === "citizen" ? (
<BackButton></BackButton>
) : (
Expand Down Expand Up @@ -572,7 +572,7 @@ const UserProfile = ({ stateCode, userType, cityDetails }) => {

<LabelFieldPair>
<div>
<a style={{ color: "orange", cursor: "default", marginBottom: "5", cursor: "pointer" }} onClick={TogleforPassword}>
<a style={{ color: "#a82227", cursor: "default", marginBottom: "5", cursor: "pointer",position:"relative" }} onClick={TogleforPassword}>
{t("CORE_COMMON_CHANGE_PASSWORD")}
</a>
{changepassword ? (
Expand Down

0 comments on commit de8ee43

Please sign in to comment.