Skip to content

Commit 6ce4157

Browse files
authored
Merge pull request #2 from dttdrv/claude/add-iliyan-picture-TuAom
Fix navbar blur by removing transform: translateZ(0)
2 parents caef2a9 + f34167a commit 6ce4157

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

src/app/globals.css

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -463,25 +463,21 @@
463463
box-shadow: var(--nav-shadow);
464464
}
465465

466-
/* Navbar shape states - CSS transitions for GPU acceleration */
466+
/* Navbar shape states - CSS transitions */
467467
.nav-default-shape,
468468
.nav-scrolled-shape {
469469
border-style: solid;
470470
transition:
471471
background-color 0.4s var(--ease-out),
472472
box-shadow 0.4s var(--ease-out),
473473
border-radius 0.4s var(--ease-out),
474-
border-color 0.4s var(--ease-out),
475-
backdrop-filter 0.4s var(--ease-out);
476-
transform: translateZ(0);
477-
backface-visibility: hidden;
474+
border-color 0.4s var(--ease-out);
478475
}
479476

480477
.nav-default-shape {
481478
border-radius: 0;
482479
border-width: 0;
483480
border-color: transparent;
484-
backdrop-filter: blur(0px);
485481
}
486482

487483
.nav-scrolled-shape {

0 commit comments

Comments
 (0)