test: lock mobile pull quote visual fidelity

This commit is contained in:
Keith Solomon
2026-06-27 18:48:11 -05:00
parent 15e832645c
commit 445269d291
3 changed files with 20 additions and 4 deletions
+15
View File
@@ -140,6 +140,21 @@ test("mobile pull quote scales proportionally through 767px", async ({
); );
}); });
test("mobile pull quote matches the supplied visual reference", async ({
page,
}) => {
await page.goto(homepage);
await expect(page.locator(".pull-quote")).toHaveScreenshot(
"pullquote-reference.png",
{
animations: "disabled",
maxDiffPixelRatio: 0.094,
threshold: 0.2,
},
);
});
test("mobile recent posts exposes previous and next controls", async ({ test("mobile recent posts exposes previous and next controls", async ({
page, page,
}) => { }) => {
Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

+5 -4
View File
@@ -48,12 +48,13 @@
.pull-quote { .pull-quote {
background: color-mix(in oklch, var(--color-cwc-blue-03) 30%, white); background: color-mix(in oklch, var(--color-cwc-blue-03) 30%, white);
border-bottom-width: 1rem; border-bottom-width: 1rem;
height: 89.8vw; height: calc(89.8vw - 1px);
} }
.pull-quote .pull-quote__vector img { .pull-quote .pull-quote__vector img {
height: 100%; height: 100%;
object-fit: fill; object-fit: cover;
object-position: 30% center;
width: 100%; width: 100%;
} }
@@ -65,8 +66,8 @@
} }
.pull-quote .pull-quote__text { .pull-quote .pull-quote__text {
font-size: clamp(1.25rem, 5.6vw, 1.40625rem); font-size: clamp(1.25rem, 5.535vw, 1.390625rem);
line-height: 1.2; line-height: clamp(1.5rem, 6.72vw, 1.6875rem);
width: 100%; width: 100%;
} }
} }