-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade dependencies Styling tweaks
- Loading branch information
Showing
9 changed files
with
109 additions
and
123 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,10 +50,10 @@ | |
{:else} | ||
<picture> | ||
<source srcset="/headshot.webp" type="image/webp" /> | ||
<source srcset="/headshot.png" type="image/png" /> | ||
<source srcset="/headshot.jpg" type="image/jpeg" /> | ||
<img | ||
data-testid="headshot-image" | ||
src="/headshot.png" | ||
src="/headshot.jpg" | ||
alt="Ross Hill" | ||
width={remsToPixels(10)} | ||
height={remsToPixels(10)} | ||
|
@@ -84,7 +84,7 @@ | |
<AnimatedName /> | ||
</div> | ||
<p class="subtitle role do-transition" data-testid="job-title"> | ||
Software Developer | ||
Software Engineer | ||
</p> | ||
<p class="subtitle email"> | ||
<a href="mailto:[email protected]" data-testid="email-address" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,7 +48,7 @@ test("Sidebar information is displayed", async ({ page }) => { | |
await expectCount(headshotImage, 1); | ||
|
||
const jobTitle = getLocator([sidebar, "job-title"]); | ||
await expectTextContent(jobTitle, "Software Developer"); | ||
await expectTextContent(jobTitle, "Software Engineer"); | ||
|
||
const emailAddress = getLocator([sidebar, "email-address"]); | ||
await expectTextContent(emailAddress, "[email protected]"); | ||
|