Skip to content
This repository was archived by the owner on Apr 28, 2025. It is now read-only.

Commit cfb4c82

Browse files
authored
fix: changed start to flex-start (and end) (#2113)
1 parent 6ef20fd commit cfb4c82

File tree

9 files changed

+19
-25
lines changed

9 files changed

+19
-25
lines changed

.stylelintrc

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -72,13 +72,7 @@
7272
],
7373
"no-descending-specificity": true,
7474
"no-duplicate-selectors": true,
75-
"order/properties-alphabetical-order": true,
76-
"plugin/no-unsupported-browser-features": [
77-
null,
78-
{
79-
"severity": "warning"
80-
}
81-
]
75+
"order/properties-alphabetical-order": true
8276
}
8377
}
8478
]

dist/carousel/carousel.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ span.carousel__container {
261261
border-right-width: calc(100vw + 100vh);
262262
}
263263
.carousel__snap-point {
264-
scroll-snap-align: start;
264+
scroll-snap-align: flex-start;
265265
scroll-snap-coordinate: 0 0;
266266
}
267267
/* autoprefixer: on */

dist/field/field.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ div.field__description {
111111
vertical-align: top;
112112
}
113113
.field__group--align-top > .field__label {
114-
align-self: start;
114+
align-self: flex-start;
115115
margin-top: 16px;
116116
}
117117
[dir="rtl"] .field__description--group > :last-child {

dist/page-notice/page-notice.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ span[role="region"].page-notice {
100100
p.page-notice__cta {
101101
grid-column: 2;
102102
grid-row: 2;
103-
justify-self: start;
103+
justify-self: flex-start;
104104
margin-right: 16px;
105105
margin-top: 16px;
106106
}
@@ -115,13 +115,13 @@ p.page-notice__cta {
115115
p.page-notice__cta {
116116
grid-column: 4;
117117
grid-row: 1;
118-
justify-self: end;
118+
justify-self: flex-end;
119119
margin-bottom: 0;
120120
margin-top: 1px;
121121
padding-right: 16px;
122122
}
123123
.page-notice__footer {
124-
justify-self: end;
124+
justify-self: flex-end;
125125
margin-top: 0;
126126
}
127127
}

dist/section-notice/section-notice.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ span[role="region"].section-notice {
6262
.section-notice__footer {
6363
grid-column: 4;
6464
grid-row: 1;
65-
justify-self: end;
65+
justify-self: flex-end;
6666
margin-top: 2px;
6767
}
6868
.section-notice__main p {
@@ -72,7 +72,7 @@ span[role="region"].section-notice {
7272
p.section-notice__cta {
7373
grid-column: 2;
7474
grid-row: 2;
75-
justify-self: start;
75+
justify-self: flex-start;
7676
margin-right: 16px;
7777
margin-top: 16px;
7878
}
@@ -89,7 +89,7 @@ p.section-notice__cta {
8989
p.section-notice__cta {
9090
grid-column: 4;
9191
grid-row: 1;
92-
justify-self: end;
92+
justify-self: flex-end;
9393
margin-bottom: 0;
9494
margin-top: 0;
9595
padding-right: 16px;
@@ -103,7 +103,7 @@ p.section-notice__cta {
103103
padding-right: 0;
104104
}
105105
[dir="rtl"] .section-notice__footer {
106-
justify-self: start;
106+
justify-self: flex-start;
107107
margin-left: initial;
108108
margin-right: auto;
109109
padding-left: initial;

src/less/carousel/carousel.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ span.carousel__container {
294294
}
295295

296296
.carousel__snap-point {
297-
scroll-snap-align: start;
297+
scroll-snap-align: flex-start;
298298
-webkit-scroll-snap-coordinate: 0 0;
299299
-ms-scroll-snap-coordinate: 0 0;
300300
scroll-snap-coordinate: 0 0;

src/less/field/field.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ div.field__description {
161161
}
162162

163163
.field__group--align-top > .field__label {
164-
align-self: start;
164+
align-self: flex-start;
165165
margin-top: 16px;
166166
}
167167

src/less/page-notice/page-notice.less

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ span[role="region"].page-notice {
129129
p.page-notice__cta {
130130
grid-column: 2;
131131
grid-row: 2;
132-
justify-self: start;
132+
justify-self: flex-start;
133133
margin-right: @spacing-200;
134134
margin-top: @spacing-200;
135135
}
@@ -147,14 +147,14 @@ p.page-notice__cta {
147147
p.page-notice__cta {
148148
grid-column: 4;
149149
grid-row: 1;
150-
justify-self: end;
150+
justify-self: flex-end;
151151
margin-bottom: 0;
152152
margin-top: 1px;
153153
padding-right: @spacing-200;
154154
}
155155

156156
.page-notice__footer {
157-
justify-self: end;
157+
justify-self: flex-end;
158158
margin-top: 0;
159159
}
160160
}

src/less/section-notice/section-notice.less

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ span[role="region"].section-notice {
8181
.section-notice__footer {
8282
grid-column: 4;
8383
grid-row: 1;
84-
justify-self: end;
84+
justify-self: flex-end;
8585
margin-top: 2px;
8686
}
8787

@@ -93,7 +93,7 @@ span[role="region"].section-notice {
9393
p.section-notice__cta {
9494
grid-column: 2;
9595
grid-row: 2;
96-
justify-self: start;
96+
justify-self: flex-start;
9797
margin-right: @spacing-200;
9898
margin-top: @spacing-200;
9999
}
@@ -114,7 +114,7 @@ p.section-notice__cta {
114114
p.section-notice__cta {
115115
grid-column: 4;
116116
grid-row: 1;
117-
justify-self: end;
117+
justify-self: flex-end;
118118
margin-bottom: 0;
119119
margin-top: 0;
120120
padding-right: @spacing-200;
@@ -132,7 +132,7 @@ p.section-notice__cta {
132132
}
133133

134134
.section-notice__footer {
135-
justify-self: start;
135+
justify-self: flex-start;
136136
margin-left: initial;
137137
margin-right: auto;
138138
padding-left: initial;

0 commit comments

Comments
 (0)