Commit 1e3a9cff authored by Marcelo Rivera's avatar Marcelo Rivera

(fix): hashtags colour and font-weight

1 merge request!674Onboarding
Pipeline #106666199 running with stages
......@@ -15,10 +15,7 @@
[class.m-hashtagsList__item--selected]="hashtag.selected"
*ngFor="let hashtag of hashtags"
>
<span
[ngClass]="{ selected: hashtag.selected }"
(click)="toggleSelection(hashtag)"
>
<span (click)="toggleSelection(hashtag)">
#{{ hashtag.value | titlecase }}
</span>
</li>
......
......@@ -18,6 +18,7 @@ m-onboarding__hashtagsStep {
font-size: 18px;
line-height: 44px;
font-weight: bold;
@media screen and(max-width: $max-mobile) {
font-size: 16px;
......@@ -25,8 +26,10 @@ m-onboarding__hashtagsStep {
}
&.m-hashtagsList__item--selected {
@include m-theme() {
color: themed($aqua);
span {
@include m-theme() {
color: themed($m-aqua);
}
}
@media screen and (min-width: $max-mobile) {
......
Please register or to comment