Skip to content

Commit c84af6a

Browse files
committed
Fix up variable usage
1 parent 68b4d9c commit c84af6a

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

src/apps/talent-search/src/routes/talent-search/TalentSearch.module.scss

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -33,25 +33,25 @@
3333
}
3434

3535
.popularSkillsTitle{
36-
font-family: 'Roboto';
36+
font-family: $font-roboto;
3737
font-weight: 700;
3838
font-size: 20px;
3939
line-height: 26px;
4040
text-align: center;
41-
color: #fff;
41+
color: $tc-white;
4242
}
4343

4444
.searchHeader{
4545
text-align: center;
4646
}
4747

4848
.searchHeaderText{
49-
font-family: 'Roboto';
49+
font-family: $font-roboto;
5050
font-weight: 500;
5151
font-size: 30px;
5252
line-height: 20px;
5353
letter-spacing: 0.5px;
54-
color: white;
54+
color: $tc-white;
5555
}
5656

5757
.subHeader{
@@ -60,19 +60,19 @@
6060
}
6161

6262
.subHeaderText{
63-
font-family: 'Barlow';
63+
font-family: $font-barlow;
6464
font-weight: 400;
6565
font-size: 25px;
6666
line-height: 30px;
67-
color: white;
67+
color: $tc-white;
6868

6969
}
7070
.searchPrompt{
71-
font-family: 'Roboto';
71+
font-family: $font-roboto;
7272
font-weight: 700;
7373
font-size: 16px;
7474
line-height: 48px;
75-
color: white;
75+
color: $tc-white;
7676
}
7777

7878
.searchOptions{
@@ -90,7 +90,7 @@
9090
.searchIcon{
9191
width: 24px;
9292
height: 24px;
93-
color: #aaaaaa;
94-
stroke: #aaaaaa;
93+
color: $black-40;
94+
stroke: $black-40;
9595
margin-right: 24px;
9696
}

src/apps/talent-search/src/routes/talent-search/components/SkillPill.module.scss

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@import '@talentSearch/styles/variables';
22

33
.unSelected{
4-
color: #fff;
4+
color: $tc-white;
55
border-radius: 40px;
66
border-style: solid;
77
border-width: 1px;
@@ -14,17 +14,17 @@
1414
border-radius: 40px;
1515
border-style: solid;
1616
border-width: 1px;
17-
border-color: #fff;
17+
border-color: $tc-white;
1818
padding: 8px 14px 8px 14px;
1919
text-align: center;
2020
margin-right: 8px;
2121
background-color: rgba(255, 255, 255, 0.3);
2222
}
2323

2424
.pillText{
25-
font-family: 'Roboto';
25+
font-family: $font-roboto;
2626
font-weight: 400;
2727
font-size: 16px;
2828
line-height: 24px;
29-
color: #fff;
29+
color: $tc-white;
3030
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
$side-nav-width: 353px;
1+
@import "@libs/ui/styles/includes";

0 commit comments

Comments
 (0)