Skip to content

Commit 0526a01

Browse files
committed
Change Timeline Icons
1 parent 7d0be32 commit 0526a01

File tree

2 files changed

+10
-12
lines changed

2 files changed

+10
-12
lines changed

src/app/riders/rider-profile/rider-timeline/time-line/time-line.component.scss

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ $line-dash-width: 0.35rem;
1212

1313
&__timeline {
1414

15-
&-viewbox{
15+
&-viewbox {
1616
position: relative;
1717
height: 100%;
1818
min-width: 60px;
1919

20-
svg{
20+
svg {
2121
position: absolute;
2222
left: 0;
2323
top: 0;
@@ -26,16 +26,16 @@ $line-dash-width: 0.35rem;
2626

2727
stroke: $line-color;
2828

29-
line{
29+
line {
3030
stroke-width: $line-width;
3131
vector-effect: non-scaling-stroke;
3232
}
3333

34-
.info{
34+
.info {
3535
stroke-dasharray: $line-dash-width $line-dash-width;
3636
}
3737

38-
circle{
38+
circle {
3939
fill: $color-primary;
4040
vector-effect: non-scaling-stroke;
4141
}
@@ -62,7 +62,6 @@ $line-dash-width: 0.35rem;
6262
}
6363

6464

65-
6665
&__card {
6766
display: flex;
6867
flex-direction: column;
@@ -75,14 +74,13 @@ $line-dash-width: 0.35rem;
7574
position: absolute;
7675
top: 1rem;
7776
right: 1rem;
78-
background-color: $color-primary;
7977
border-radius: 50%;
8078
width: 2rem;
8179
height: 2rem;
8280
display: flex;
8381
justify-content: center;
8482
align-items: center;
85-
color: $color-white;
83+
color: $color-primary;
8684

8785
@include respond(medium) {
8886
top: 0;

src/app/riders/rider-profile/rider-timeline/time-line/time-line.component.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,16 @@ export class TimeLineComponent implements OnInit {
2424
return "";
2525

2626
case "start":
27-
return "play_arrow";
27+
return "tour";
2828

2929
case "finish":
30-
return "stop";
30+
return "sports_score";
3131

3232
case "win":
33-
return "flare";
33+
return "sentiment_very_satisfied";
3434

3535
case "lose":
36-
return "flash_on";
36+
return "sentiment_very_dissatisfied";
3737
}
3838
}
3939
}

0 commit comments

Comments
 (0)