Remove button shine/sweep hover effect

- Remove .btn::before pseudo-element that created moving white box on hover

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Jeff Emmett 2026-01-30 15:16:46 +00:00
parent a4c304d287
commit 61b409dd89
1 changed files with 0 additions and 14 deletions

View File

@ -297,20 +297,6 @@
overflow: hidden;
}
.btn::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
transition: left 0.5s;
}
.btn:hover::before {
left: 100%;
}
.btn-primary {
background: var(--gradient-1);