Skip to content

Commit

Permalink
Merge pull request #151 from rahulg1254/admin-master
Browse files Browse the repository at this point in the history
Task #223692 feat: Matched the figma for admin
  • Loading branch information
itsvick authored Aug 22, 2024
2 parents 5708637 + b2794fc commit 5abea0a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
3 changes: 2 additions & 1 deletion src/components/layouts/FullLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,8 @@ const FullLayout = ({ children }: any) => {
<Header
sx={{
paddingLeft: isSidebarOpen && lgUp ? "265px" : "",
backgroundColor: "#4d4639",
backgroundColor: "#FFFFFF",
boxshow: "0px 4px 4px rgba(0, 0, 0, 0.25)",
}}
toggleMobileSidebar={() => setMobileSidebarOpen(true)}
/>
Expand Down
5 changes: 3 additions & 2 deletions src/components/layouts/header/Profile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -219,8 +219,9 @@ const Profile = () => {
aria-controls="profile-menu"
aria-haspopup="true"
onClick={handleClick4}
sx={{ border: "none" }}
>
<Box display="flex" alignItems="center" color="white">
<Box display="flex" alignItems="center" color="#1F1B13">
<AccountCircleIcon />
<Box
sx={{
Expand All @@ -238,7 +239,7 @@ const Profile = () => {
</Typography>
<Typography
variant="body1"
fontWeight="700"
fontWeight="400"
sx={{
ml: 1,
maxWidth: "200px",
Expand Down
3 changes: 2 additions & 1 deletion src/pages/block.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -516,6 +516,7 @@ const Block: React.FC = () => {
<FormControl
sx={{
width: "25%",
marginLeft: 2,
"@media (max-width: 580px)": {
width: "100%",
},
Expand Down Expand Up @@ -543,7 +544,7 @@ const Block: React.FC = () => {
}}
>
<InputLabel
sx={{ backgroundColor: "#F7F7F7", padding: "2px 8px" }}
sx={{ backgroundColor: "white", padding: "2px 8px" }}
id="district-select-label"
>
{t("MASTER.DISTRICTS")}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/district.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ const District: React.FC = () => {
<Box display="flex" gap={2}>
<FormControl
variant="outlined"
sx={{ minWidth: 220, marginTop: 2 }}
sx={{ minWidth: 220, marginTop: 1, mb: 2, marginLeft: 2 }}
>
<InputLabel id="state-select-label">{stateValue}</InputLabel>
<Select labelId="state-select-label" id="state-select" disabled>
Expand Down

0 comments on commit 5abea0a

Please sign in to comment.