add new yandex auth

This commit is contained in:
smanylov
2026-03-11 18:21:19 +07:00
parent e8f4f9939f
commit 9fbb74ba60
8 changed files with 156 additions and 20 deletions
+26
View File
@@ -710,4 +710,30 @@
color: #dc2626;
font-weight: 500;
}
}
.yandex-auth-button {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
padding: 14px 24px;
border: none;
border-radius: 8px;
font-size: 16px;
font-weight: 500;
cursor: pointer;
transition: all 0.2s ease;
text-decoration: none;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
width: 100%;
box-sizing: border-box;
background: #000000;
color: #FFFFFF;
&:hover {
background: #1a1a1a;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
/* transform: translateY(-2px); */
}
}