File size: 1,572 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
@import "@wordpress/base-styles/breakpoints";
@import "@wordpress/base-styles/mixins";

.emails__step-section-wrapper {
	margin: 0 auto;
	max-width: 720px;
}

.is-section-signup .emails__step-content {
	margin-bottom: 50px;

	&.emails__step-content-email-step {
		margin-bottom: 20px;
	}
}

.signup__step.is-emails,
.signup__step.is-mailbox {
	.emails__register-email-step--domain-name {
		word-break: break-all;
	}
}

body.is-section-signup {
	$light-white: #f3f4f5;

	.emails__step-content {
		display: flex;

		.emails__email-side-content-container {
			flex-direction: column;
			width: 100vw;
			margin-top: 40px;
			display: none;

			@include break-large {
				width: 30vw;
				margin-top: 0;
				flex-direction: column;
				display: flex;
			}

			@include break-wide {
				width: 350px;
			}
		}

		.register-email-step .emails__email-side-content-container {
			display: flex;

			@include break-small {
				flex-direction: row;

				.emails__email-side-content {
					padding-top: 0;
					border-bottom: none;
				}
			}

			@include break-large {
				display: none;
			}
		}

		.emails__email-side-content {
			border-bottom: 1px solid;
			border-bottom-color: var(--studio-gray-5);
			padding: 20px 0;
			margin: 0 20px;

			@include break-large {
				margin: 0 20px 0 40px;
				padding: 40px 0;
			}

			@include break-wide {
				margin: 0 0 0 80px;
			}
		}

		.emails__email-side-content:first-of-type {
			padding-top: 0;
		}

		.emails__email-side-content:last-of-type {
			border-bottom: none;
		}

		.emails__register-email-step {
			flex: 1;
		}
	}
}