Skip to content
Projects
Groups
Snippets
Help
Sign in / Register
Toggle navigation
Minds Frontend
Project overview
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
384
Merge Requests
55
CI / CD
Security & Compliance
Packages
Wiki
Snippets
Members
Collapse sidebar
Close sidebar
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Minds Frontend
Commits
1e3a9cff
Commit
1e3a9cff
authored
8 minutes ago
by
Marcelo Rivera
Browse files
Options
Download
(fix): hashtags colour and font-weight
parent
42585598
feat/onboarding
1 merge request
!674
Onboarding
Pipeline
#106666199
running with stages
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
src/app/modules/onboarding-v2/steps/hashtags/hashtags.component.html
View file @
1e3a9cff
...
...
@@ -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>
...
...
This diff is collapsed.
src/app/modules/onboarding-v2/steps/hashtags/hashtags.component.scss
View file @
1e3a9cff
...
...
@@ -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
)
{
...
...
This diff is collapsed.
Please
register
or
sign in
to comment