Skip to content

Commit

Permalink
fix precommit
Browse files Browse the repository at this point in the history
  • Loading branch information
AVtheking committed Oct 27, 2024
1 parent f3275a5 commit 6c57446
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 31 deletions.
2 changes: 1 addition & 1 deletion .husky/pre-commit
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

# npm run format:fix
# npm run lint:fix
# npm run lint-staged
npm run lint-staged
# npm run typecheck
npm run update:toc

Expand Down
9 changes: 4 additions & 5 deletions src/assets/css/app.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/components/LeftDrawer/LeftDrawer.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
display: flex;
flex-direction: column;
padding: 1rem 1rem 0 1rem;
background-color: #F6F8FC;
background-color: #f6f8fc;
transition: 0.5s;
font-family: var(--bs-leftDrawer-font-family);
}
Expand Down
4 changes: 2 additions & 2 deletions src/components/LeftDrawerOrg/LeftDrawerOrg.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
display: flex;
flex-direction: column;
padding: 0.8rem 0rem 0 1rem;
background-color: #F6F8FC;
background-color: #f6f8fc;
transition: 0.5s;
font-family: var(--bs-leftDrawer-font-family);
}
Expand Down Expand Up @@ -105,7 +105,7 @@
}

.leftDrawer .organizationContainer .profileContainer {
background-color: #E0E9FF;
background-color: #e0e9ff;
padding-right: 10px;
}

Expand Down
35 changes: 13 additions & 22 deletions src/screens/OrganizationPeople/OrganizationPeople.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,12 @@
}

.subtleBlueGrey {
color: #7c9beb;
text-decoration: none;
color: #7c9beb;
text-decoration: none;
}


.subtleBlueGrey:hover {
color: #5F7E91;
color: #5f7e91;
text-decoration: underline;
}
.dropdown {
Expand All @@ -30,27 +29,22 @@

.dropdown:hover,
.dropdown:focus,
.dropdown:active
.dropdown:focus-visible
.dropdown.show
{
.dropdown:active .dropdown:focus-visible .dropdown.show {
background-color: transparent !important;
border: 1px solid #555555;
color:#555555 !important;

color: #555555 !important;
}
.dropdown:focus,
.dropdown:focus-visible,
.dropdown:active
.dropdown.show {
background-color: white !important;
color: black !important;
.dropdown:active .dropdown.show {
background-color: white !important;
color: black !important;
outline: none !important;
}

.dropdownItem {
background-color: white !important;
color: #555555 !important;
background-color: white !important;
color: #555555 !important;
border: none !important;
}

Expand Down Expand Up @@ -90,8 +84,6 @@
position: relative;
}



.btnsContainer .input button {
width: 52px;
}
Expand All @@ -100,26 +92,25 @@
margin-top: 10px;
margin-bottom: 10px;
background-color: white;
box-shadow: 0 1px 1px #DDDDDD;
box-shadow: 0 1px 1px #dddddd;
}
.inputFieldModal {
margin-bottom: 10px;
background-color: white;
box-shadow: 0 1px 1px #DDDDDD;
box-shadow: 0 1px 1px #dddddd;
}
.inputField > button {
padding-top: 10px;
padding-bottom: 10px;
}
.TableImage {
.TableImage {
object-fit: cover;
margin-top: 15px !important;
width: 50px !important;
height: 50px !important;
border-radius: 100% !important;
}
.tableHead {

color: white;
border-radius: 20px !important;
padding: 20px;
Expand Down

0 comments on commit 6c57446

Please sign in to comment.