Skip to content

Commit

Permalink
DDW-659 - Review and fix incorrect global instances in css files - do…
Browse files Browse the repository at this point in the history
…t fix
  • Loading branch information
DeeJayElly committed Jun 8, 2021
1 parent 1d2ce65 commit f1c2586
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions source/renderer/app/components/widgets/NewsFeedIcon.scss
Expand Up @@ -3,30 +3,15 @@
right: 29px;
top: 20px;

.dot {
&:after {
background: var(--theme-news-feed-icon-green-dot-background-color);
border-radius: 12.5px;
content: '';
display: block;
height: 8px;
pointer-events: none;
position: absolute;
right: 7px;
top: 7px;
width: 8px;
}
}

.notificationDot {
&.notificationDot {
@extend .dot;

&:after {
background: var(--theme-news-feed-icon-red-dot-background-color);
background: var(--theme-news-feed-icon-red-dot-background-color) !important;
}
}

.updateDot {
&.updateDot {
@extend .dot;
}

Expand Down Expand Up @@ -57,3 +42,18 @@
}
}
}

.dot {
&:after {
background: var(--theme-news-feed-icon-green-dot-background-color);
border-radius: 12.5px;
content: '';
display: block;
height: 8px;
pointer-events: none;
position: absolute;
right: 7px;
top: 7px;
width: 8px;
}
}

0 comments on commit f1c2586

Please sign in to comment.