File size: 831 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
@import "@automattic/color-studio/dist/color-variables";
@import "@wordpress/base-styles/breakpoints";

.subscription-manager__container {
	max-width: 1440px;
	padding: 48px 62px;

	.formatted-header {
		margin: 0;

		&__title {
			font-size: $font-headline-medium !important;
			line-height: $font-headline-large;
			color: $studio-gray-100;
			margin-bottom: 16px;
		}

		&__subtitle {
			font-size: $font-body !important;
			line-height: $font-title-medium;
			color: $studio-gray-60;
			margin-bottom: 30px;

			& .email-address {
				font-weight: 500;
			}
		}
	}
}


@media screen and (max-width: $break-medium) {
	.subscription-manager__container {
		padding: 30px 24px;

		.formatted-header {
			&__title {
				font-size: rem(28px) !important;
				line-height: $font-headline-small;
				margin-bottom: 8px;
			}
		}

	}
}