File size: 1,718 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
$blueberry-20: #adbaf3;

.performance-profiler-migration-banner {
	background: var(--studio-gray-80);

	.content-area {
		display: flex;
		padding: 64px 0;
		align-items: center;
		gap: 64px;

		.content {
			display: flex;
			flex-direction: column;
			align-items: flex-start;
			gap: 24px;
		}

		.content-text {
			display: flex;
			flex-direction: column;
			align-items: flex-start;
			gap: 12px;
		}

		.section-name {
			font-family: Inter, $sans;
			color: $blueberry-20;
			font-size: $font-body-small;
			line-height: $font-title-small;
			text-transform: uppercase;
		}

		.title {
			font-family: Recoleta, sans-serif;
			font-size: $font-title-large;
			line-height: $font-headline-small;
			color: #fff;
		}

		.subtitles {
			display: flex;
			flex-direction: column;
			gap: 24px;
		}

		.subtitle {
			color: var(--studio-gray-10);
			font-size: $font-body;
			line-height: $font-title-medium;

			.highlight {
				color: #fff;
			}
		}

		.features {
			display: flex;
			flex-direction: column;
			align-items: flex-start;
			gap: 8px;

			.feature {
				display: flex;
				align-items: center;
				gap: 8px;

				color: #fff;

				.icon {
					background: var(--studio-green-40);
					border-radius: 50%;
					padding: 3px;
					color: #000;
				}
			}
		}

		.buttons {
			display: flex;
			align-items: center;
			gap: 16px;

			a {
				font-size: $font-body-small;
				padding: 8px 14px;
				border-radius: 2px;
				height: 40px;
			}

			.outlined-button {
				background: transparent;
				color: #fff;
			}
		}

		.illustration img {
			max-width: fit-content;
		}
	}

	.trusted-by {
		color: #fff;
		font-size: $font-body-extra-small;
		margin-bottom: 8px;
		text-transform: uppercase;
	}
}