Skip to content

Instantly share code, notes, and snippets.

@xTCry
Last active February 21, 2024 14:43
Show Gist options
  • Save xTCry/cf2ec97fbada8f3885141830ba97c1c4 to your computer and use it in GitHub Desktop.
Save xTCry/cf2ec97fbada8f3885141830ba97c1c4 to your computer and use it in GitHub Desktop.
[Bitrix] Fix top bitrix panel offset
/* // * Fix top bitrix panel offset */
:root {
--bx-panel-top-offset: 0px;
}
:has(#bx-panel.bx-panel-fixed) {
--bx-panel-top-offset: 39px;
}
:has(#bx-panel.bx-panel-fixed:not(.bx-panel-folded)) {
--bx-panel-top-offset: 147px;
}
/* for Bootstrap */
.sticky-top {
top: var(--bx-panel-top-offset, 0) !important;
}
/* Customizing: */
/* example */
:has(#bx-panel.bx-panel-fixed) header.header {
top: var(--bx-panel-top-offset) !important;
}
.burger-menu {
top: calc(var(--bx-panel-top-offset) + 4.375rem) !important;
}
.burger-menu--top {
top: calc(var(--bx-panel-top-offset) + 6.875rem) !important;
}
@media screen and (max-width: 1023px) {
.burger-menu {
top: calc(var(--bx-panel-top-offset) + 2.75rem) !important;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment