This commit is contained in:
2026-07-16 12:36:22 +00:00
parent 93fc492981
commit b60987323e
6 changed files with 60 additions and 8 deletions

View File

@@ -168,3 +168,31 @@
/* === Service detail sidebar === */
.service-sidebar { padding: 12px !important; }
}
/* ── Hero 5: restore floating arrows (remove white panel) ── */
.hero-5 .icon-box {
background: none;
border-radius: 0;
padding: 0;
display: block;
align-items: unset;
gap: 0;
bottom: 32px;
right: 32px;
}
.hero-5 .icon-box .slider-arrow {
background-color: rgba(255,255,255,0.2);
border: none;
color: #fff;
}
.hero-5 .icon-box .slider-arrow:hover {
background-color: var(--brand-primary, #FA2D39);
border-color: transparent;
color: #fff;
}
@media (max-width: 575px) {
.hero-5 .icon-box {
bottom: 16px;
right: 16px;
}
}