Update button styles in ReviewForm and lock icon in AuthLockBlock
This commit is contained in:
parent
8f9a6969d2
commit
9d83f10d1b
2 changed files with 14 additions and 28 deletions
|
|
@ -591,21 +591,22 @@ export default function ReviewForm(props: ReviewFormProps) {
|
|||
justify-content: center;
|
||||
gap: 0.5rem;
|
||||
width: 100%;
|
||||
padding: 1rem 1.5rem;
|
||||
background: linear-gradient(135deg, #eac26e 0%, #ce9f40 100%);
|
||||
padding: 1rem 2rem;
|
||||
background: linear-gradient(135deg, #d4af37 0%, #eac26e 100%);
|
||||
border: none;
|
||||
border-radius: 12px;
|
||||
color: #ffffff;
|
||||
font-size: 1rem;
|
||||
border-radius: 0.75rem;
|
||||
color: #1e293b;
|
||||
font-size: 1.1rem;
|
||||
font-weight: 700;
|
||||
cursor: pointer;
|
||||
transition: all 0.3s ease;
|
||||
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
||||
box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
|
||||
margin-top: 0.5rem;
|
||||
}
|
||||
|
||||
.submit-btn:hover:not(:disabled) {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 6px 20px rgba(234, 194, 110, 0.4);
|
||||
transform: translateY(-3px);
|
||||
box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
|
||||
}
|
||||
|
||||
.submit-btn:disabled {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue