asdsad
All checks were successful
Deploy / deploy-staging (push) Successful in 6s
Deploy / deploy-production (push) Has been skipped

This commit is contained in:
2026-04-22 23:54:53 +02:00
parent e83d187a16
commit 2e39acbf03
6 changed files with 26 additions and 28 deletions

View File

@@ -2,27 +2,40 @@
display: flex;
gap: 10px;
flex-wrap: wrap;
margin-bottom: 1rem;
margin: 1rem 0 1.15rem;
}
.bc-module-tab {
display: inline-flex;
align-items: center;
padding: 10px 14px;
border-radius: 999px;
justify-content: center;
min-height: 46px;
padding: 12px 18px;
border-radius: 16px;
text-decoration: none;
color: var(--text);
border: 1px solid rgba(255,255,255,0.08);
background: rgba(255,255,255,0.04);
transition: transform .18s ease, background .18s ease, border-color .18s ease;
color: #09111f;
border: 1px solid rgba(255,255,255,0.16);
background: rgba(255,255,255,0.9);
font-weight: 700;
box-shadow: 0 10px 22px rgba(0,0,0,0.10);
transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.bc-module-tab:hover,
.bc-module-tab:focus-visible,
.bc-module-tab.is-active {
transform: translateY(-1px);
background: rgba(71, 169, 255, 0.12);
border-color: rgba(71, 169, 255, 0.32);
box-shadow: 0 14px 28px rgba(0,0,0,0.14);
}
.bc-module-tab.is-active {
background: linear-gradient(135deg, #79d7ff, #5eead4);
border-color: rgba(94, 234, 212, 0.35);
}
.bc-module-tab:hover,
.bc-module-tab:focus-visible {
background: #ffffff;
}
.bc-hero {