File size: 1,096 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
@import "@automattic/components/src/styles/typography";

.chart-container {
	cursor: pointer;
	position: relative;
	max-width: 550px;

	.tick {
		line {
			visibility: hidden;
		}

		text {
			font-size: $font-body-extra-small;
			fill: var(--studio-gray-50);
		}
	}

	.tooltip {
		z-index: 1000;
		opacity: 0;
		position: absolute;
		background-color: var(--studio-gray-90);
		color: #fff;
		padding: 7px 10px;
		border-radius: 3px;
		font-size: $font-body-small;
	}

	.chart {
		position: relative;
		padding: 0;
		margin-left: -25px;

		.info {
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translate(calc(-50% + 10px), -50%);
			padding: 12px 14px;
			border-radius: 4px;
			background: #f6f7f7;
			width: 70%;
			max-width: 330px;
			text-wrap: pretty;
			font-family: $font-sf-pro-text;
			line-height: $font-size-header-small;

			p {
				font-size: $font-body-extra-small;
				color: var(--studio-gray-50);
				margin: 0;
			}

			.heading {
				font-size: $font-body-small;
				color: var(--studio-gray-70);
				font-weight: 500;
				margin-bottom: 4px;
			}

		}
	}
}