Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions src/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,6 @@ body,
will-change: transform;
}

.display-none {
display: none;
}

@keyframes flip {
0% {
transform: rotateY(360deg);
Expand Down
3 changes: 1 addition & 2 deletions tests/animation-verification.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ test('animation container and items exist', async ({ page }) => {
await expect(container).toBeVisible();

// Initially, before changes, checking for "Software Engineer" text
// The current implementation uses ::before, so the text might be in the display-none span
// or just invisible.
// The current implementation uses ::before, so the text might be invisible.
// We just want to ensure the page loads and the container is there.

// After changes, we expect 5 spans.
Expand Down
Loading