Skip to content

Commit

Permalink
Alignment
Browse files Browse the repository at this point in the history
  • Loading branch information
akariv committed Dec 14, 2023
1 parent 4a9c1fa commit 3afa0e6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@
position: absolute;
right: 800px;
transition: right 0.5s ease-in;
top: -1px;
}

.time {
Expand Down Expand Up @@ -106,7 +107,7 @@
color: @color-gray-2;
.font-manrope;
font-size: 13px;
font-weight: 400;
font-weight: 300;
line-height: 20px;
letter-spacing: 0.13px;
}
Expand Down
3 changes: 2 additions & 1 deletion projects/chronomaps/src/app/time-line/time-line.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,8 @@ export class TimeLineComponent implements OnInit, OnChanges, AfterViewInit {
.attr('class', 'cluster-size')
.style('fill', this.chronomap.primaryColor())
.attr('dominant-baseline', 'middle')
.attr('text-anchor', 'middle');
.attr('text-anchor', 'middle')
.attr('dy', 1);
points.exit().remove();

this.updatePoints();
Expand Down

0 comments on commit 3afa0e6

Please sign in to comment.