Skip to content

Commit

Permalink
RD - fix light buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
moysa committed Nov 17, 2023
1 parent 6a1d641 commit 7f7abf2
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/Avatar/Avatar.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
height: 15px;
display: inline-block;
margin: 0px 0px;
background-color: var(--accent-2);
background-color: var(--accent);
-webkit-mask: url(../../assets/icons/verified.svg) no-repeat 0px / 15px;
mask: url(../../assets/icons/verified.svg) no-repeat 0px / 15px;
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/HomeHeader/HomeHeader.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@
align-items: center;
height: 40px;
.avatar {
border: solid 2px var(--text-primary);
border: solid 2px var(--text-primary-button);
border-radius: 50%;
width: 30px;
height: 30px;
Expand Down
5 changes: 5 additions & 0 deletions src/pages/Messages.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -247,11 +247,16 @@
@include thread(true);
.threadMessages {
.message {
color: var(--text-primary-button);
background-color: var(--accent);
border-radius: 12px 0px 0px 12px;
&:last-child {
border-radius: 12px 12px 0px 12px;
}
a {
color: var(--text-primary-button) !important;
text-decoration: underline !important;
}
}
}
+ .myThread {
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Notifications.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
justify-content: center;
width: auto;
height: 40px;
color: var(--text-primary);
color: var(--text-primary-button);
background: var(--accent);
font-size: 14px;
font-weight: 400;
Expand Down

0 comments on commit 7f7abf2

Please sign in to comment.