Skip to content

Commit 8ea3c39

Browse files
feature/logical-revamp-v8 : feedback (#773)
* feature/logical-revamp-v8 : feedback * Update plugins/postcss-logical/src/utils/parse-value-couple.ts Co-authored-by: Antonio Laguna <[email protected]> * undo * more undo Co-authored-by: Antonio Laguna <[email protected]>
1 parent 481006a commit 8ea3c39

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+163
-157
lines changed

plugin-packs/postcss-preset-env/test/basic.autoprefixer.expect.css

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -518,10 +518,7 @@
518518
right: 3px;
519519
bottom: 3px;
520520
left: 2px;
521-
top: 2px;
522-
right: 2px;
523-
bottom: 2px;
524-
left: 2px;
521+
padding-left: 2px;
525522
}
526523

527524
.trigonometric {

plugin-packs/postcss-preset-env/test/basic.autoprefixer.false.expect.css

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -518,10 +518,7 @@
518518
right: 3px;
519519
bottom: 3px;
520520
left: 2px;
521-
top: 2px;
522-
right: 2px;
523-
bottom: 2px;
524-
left: 2px;
521+
padding-left: 2px;
525522
}
526523

527524
.trigonometric {

plugin-packs/postcss-preset-env/test/basic.ch38.expect.css

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -429,10 +429,7 @@
429429
right: 3px;
430430
bottom: 3px;
431431
left: 2px;
432-
top: 2px;
433-
right: 2px;
434-
bottom: 2px;
435-
left: 2px;
432+
padding-left: 2px;
436433
}
437434

438435
.trigonometric {

plugin-packs/postcss-preset-env/test/basic.ch88-ff78-saf10.expect.css

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -455,10 +455,7 @@ h6.test-custom-selectors {
455455
right: 3px;
456456
bottom: 3px;
457457
left: 2px;
458-
top: 2px;
459-
right: 2px;
460-
bottom: 2px;
461-
left: 2px;
458+
padding-left: 2px;
462459
}
463460

464461
.trigonometric {

plugin-packs/postcss-preset-env/test/basic.ch88-ff78.expect.css

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -455,10 +455,7 @@ h6.test-custom-selectors {
455455
right: 3px;
456456
bottom: 3px;
457457
left: 2px;
458-
top: 2px;
459-
right: 2px;
460-
bottom: 2px;
461-
left: 2px;
458+
padding-left: 2px;
462459
}
463460

464461
.trigonometric {

plugin-packs/postcss-preset-env/test/basic.ch88-ff78.no-is-pseudo.expect.css

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -455,10 +455,7 @@ h6.test-custom-selectors {
455455
right: 3px;
456456
bottom: 3px;
457457
left: 2px;
458-
top: 2px;
459-
right: 2px;
460-
bottom: 2px;
461-
left: 2px;
458+
padding-left: 2px;
462459
}
463460

464461
.trigonometric {

plugin-packs/postcss-preset-env/test/basic.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@
354354
right: round(nearest, 2.5px, 1px);
355355
bottom: round(up, 2.5px, 1px);
356356
left: round(down, 2.5px, 1px);
357-
inset: round(to-zero, 2.5px, 1px);
357+
padding-left: round(to-zero, 2.5px, 1px);
358358
}
359359

360360
.trigonometric {

plugin-packs/postcss-preset-env/test/basic.expect.css

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -536,10 +536,7 @@
536536
right: 3px;
537537
bottom: 3px;
538538
left: 2px;
539-
top: 2px;
540-
right: 2px;
541-
bottom: 2px;
542-
left: 2px;
539+
padding-left: 2px;
543540
}
544541

545542
.trigonometric {

plugin-packs/postcss-preset-env/test/basic.ff49.expect.css

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -432,10 +432,7 @@
432432
right: 3px;
433433
bottom: 3px;
434434
left: 2px;
435-
top: 2px;
436-
right: 2px;
437-
bottom: 2px;
438-
left: 2px;
435+
padding-left: 2px;
439436
}
440437

441438
.trigonometric {

plugin-packs/postcss-preset-env/test/basic.ff66.expect.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@
426426
right: 3px;
427427
bottom: 3px;
428428
left: 2px;
429-
inset: 2px;
429+
padding-left: 2px;
430430
}
431431

432432
.trigonometric {

0 commit comments

Comments
 (0)