File size: 1,846 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
110
111
112
113
114
115
116
117
118
119
@import "@wordpress/base-styles/breakpoints";
@import "@wordpress/base-styles/mixins";

/**
 * Right to Left support
 */
html[dir="rtl"] {
	.import__onboarding-page {
		.list__importer-action .action-card__button-container {
			button,
			a {
				text-align: left;

				svg {
					transform: rotate(180deg);
				}
			}
		}

		.importer__service-icon {
			float: right;
		}
	}
}

.import__onboarding-page {
	.import-layout {
		flex-direction: column;
	}

	.import__navigation {
		.button.is-borderless {
			color: var(--color-text);
			font-weight: 600;
		}
		.button.is-borderless svg {
			top: 5px;
			width: 20px;
			height: 20px;
			margin-right: 2px;
		}
	}

	.list__wrapper {
		padding-bottom: 2rem;

		h3 {
			font-size: 1.125em;
			color: var(--studio-gray-90);
			margin-bottom: 1em;
		}

		img {
			display: none;

			@include break-small {
				display: block;
			}
		}

		.list__importers-primary,
		.list__importers-secondary {
			margin: 0 auto 1.5rem auto;
			min-width: 100%;

			@include break-small {
				min-width: 433px;
			}
		}
	}
}

.list__importers {
	max-width: 430px;

	.select-dropdown > div {
		width: 100%;
	}

	.select-dropdown__header-text {
		font-weight: 400;
	}

	.select-dropdown__header {
		border-radius: 4px;
	}

	.form-label {
		font-weight: 500;
	}
}

.list__importers.list__importers-primary .list__importers-item-card {
	display: flex;
	width: 100%;
	padding: 1.5em;
	border: solid 1px var(--studio-gray-5);
	border-radius: 4px;
	margin-bottom: 0.5rem;
	align-items: center;

	h2 {
		flex-grow: 1;
		color: var(--studio-gray-100);
		/* stylelint-disable-next-line scales/font-sizes */
		font-size: 1.125rem;
		font-weight: 500;
		text-align: left;
	}

	.importer__service-icon {
		width: 32px;
		min-width: 32px !important;
		height: 32px;
		margin-inline-end: 0.5em !important;
		border-radius: 4px;
	}
}