Skip to content

Commit

Permalink
review
Browse files Browse the repository at this point in the history
  • Loading branch information
EduardZaydler committed Dec 3, 2024
1 parent 699ee07 commit e2fb2f2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion local_modules/styles/mixins.less
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,5 @@
}

.dropdown-checkbox-item {
padding: 6px 8px 6px 8px;
padding: 6px 8px;
}
4 changes: 2 additions & 2 deletions local_modules/styles/variables.less
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ body[data-theme="Light Theme"] {
--text-secondary: @colorGrey;

--icon-checked-color: #00a8ff;
--icon-hover-color: black;
--icon-hover-color: #000;
--icon-color: #858585;

// code editor light theme colors
Expand All @@ -49,7 +49,7 @@ body[data-theme="Dark Theme"] {
--text-secondary: @colorGrey;

--icon-checked-color: #00a8ff;
--icon-hover-color: white;
--icon-hover-color: #ffffff;
--icon-color: #858585;

// code editor dark theme colors
Expand Down
2 changes: 1 addition & 1 deletion src/Components/ContactList/ContactList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ const ContactItem: React.FC<IContactItemProps> = ({
})
}
>
<td style={{ color: theme.textColorDefault }} className={cn("icon")}>
<td className={cn("icon")}>
<ContactTypeIcon type={type} />
</td>
<td>
Expand Down
2 changes: 1 addition & 1 deletion src/Components/Header/Header.less
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,6 @@

> * {
margin-left: 15px;
color: #fff !important;
color: @primaryBackground !important;
}
}

0 comments on commit e2fb2f2

Please sign in to comment.